Describe different job scheduling in operating systems.Job scheduling schedules or decides which process will get to acquire the resource based on some parameters.
- FIFO- The process that comes first is executed first.
- Shortest job First- The time taken to complete the job of all processes is computed and the shortest length process is executed first.
- Round Robin- Each process gets a time “share” for running and is later prevented to get the next process running. This process is known as time sharing, which provides the effect of all the processes running at the same time.
- Priority scheduling- Here, the process on highest priority gets the resource.
|