5,893 views
9 votes
9 votes

The performance of Round Robin algorithm depends heavily on

  1. size of the process
  2. the I/O bursts of the process
  3. the CPU bursts of the process
  4. the size of the time quantum

2 Answers

Best answer
15 votes
15 votes

The performance of Round Robin algorithm depends heavily on the size of the time quantum.

If time quantum is too large, RR reduces to the FCFS algorithm

If time quantum is too small, overhead increases due to amount of context switching needed.

So option D is correct.

selected by
Answer:

Related questions

8 votes
8 votes
3 answers
3
go_editor asked Jun 10, 2016
4,693 views
Feedback queuesare very simple to implementdispatch tasks according to execution characteristicsare used to favour real time tasksrequire manual intervention to implement...