in Operating System retagged by
831 views
0 votes
0 votes

____________ is one of pre-emptive scheduling algorithm.

  1. Shortest-Job-first
  2. Round-robin
  3. Priority based
  4. Shortest-Job-next
in Operating System retagged by
831 views

2 Answers

1 vote
1 vote

Round Robin Scheduling

  • Round Robin is the preemptive process scheduling algorithm.

  • Each process is provided a fix time to execute, it is called a quantum.

  • Once a process is executed for a given time period, it is preempted and other process executes for a given time period.

  • Context switching is used to save states of preempted processes.

0 votes
0 votes
Yes all the given scheduling algorithms except Round Robin can have both pre-emptive as well as non-preempitve modes. However we can say Priority based among the given algorithms is one of the pre-emptive algorithm. Hence the option (c) is correct.

Related questions