5,451 views
7 7 votes

With Round-Robin CPU scheduling in a time shared system

  1. using very large time slices (quantas) degenerates into First-Come First served (FCFS) algorithm.
  2. using extremely small time slices improves performance
  3. using very small time slices degenerates into Last-In First-Out (LIFO) algorithm.
  4. using medium sized times slices leads to shortest Request time First (SRTF) algorithm

2 Answers

Best answer
12 12 votes

Answer : A

Using very large time slices (quantas) degenerates into First-Come First served (FCFS) algorithm. And all the processes will be able to get completed  very fast.

selected by
6 6 votes

Ans A)using very large time slices (quantas) degenerates into First-Come First served (FCFS) algorithm

Answer:
Position:
Show:

Related questions

9 9 votes
2 answers 2 answers
7.1k
7.1k views
go_editor asked Jun 13, 2016
7,083 views
The performance of Round Robin algorithm depends heavily onsize of the processthe I/O bursts of the processthe CPU bursts of the processthe size of the time quantum
11 11 votes
3 answers 3 answers
6.2k
6.2k views
go_editor asked Jun 10, 2016
6,191 views
Feedback queuesare very simple to implementdispatch tasks according to execution characteristicsare used to favour real time tasksrequire manual intervention to implement...
33 33 votes
4 answers 4 answers
15.1k
15.1k views
Kathleen asked Oct 9, 2014
15,107 views
Four jobs to be executed on a single processor system arrive at time $0$ in the order $A, B, C, D$. Their burst CPU time requirements are $4, 1, 8, 1$ time units respecti...
1 1 vote
1 answers 1 answer
5.8k
5.8k views
go_editor asked Jun 13, 2016
5,774 views
The page replacement algorithm which gives the lowest page fault rate isLRUFIFOOptimal page replacementSecond chance algorithm