7 7 votes With Round-Robin CPU scheduling in a time shared system using very large time slices (quantas) degenerates into First-Come First served (FCFS) algorithm. using extremely small time slices improves performance using very small time slices degenerates into Last-In First-Out (LIFO) algorithm. using medium sized times slices leads to shortest Request time First (SRTF) algorithm Operating System isro2008 operating-system process-scheduling + – go_editor 5.5k views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
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. shekhar chauhan answered Jun 12, 2016 • selected May 2, 2017 by srestha shekhar chauhan comment Share Follow See all 2 Comments 2 2 Comments reply SABAREESH V commented Jul 23, 2022 reply Follow flag Degeneration means decline /not possible If we increase the time quantum of Round Robin Algorithm then the scheduling will acts like First come First serve (FCFS) How you should say it will degenerates FCFS The option A is wrong 0 0 replyShare Kshitij Sharma commented Jan 5, 2025 reply Follow flag @SABAREESH V not possible nahi balki indistinguishable , degeneration means that the behavior of the Round-Robin (RR) CPU scheduling algorithm becomes indistinguishable from that of the First-Come, First-Served (FCFS) scheduling algorithm under certain conditions.Explanation:Round-Robin Scheduling:In RR scheduling, every process gets a fixed time slice (quantum) to execute.If a process does not finish during its quantum, it is preempted and moved to the back of the ready queue, allowing the next process to execute.When Quantum Becomes Very Large:If the time slice (quantum) is set to a very large value, it becomes long enough for any process to finish its execution in one go without being preempted.In this case, processes are not preempted, and they execute in the order they arrive in the queue.Resemblance to FCFS:In FCFS, processes execute in the order they arrive, without preemption.With a very large quantum, RR essentially mimics this behavior because each process runs to completion before the next process gets CPU time.Why It’s Called Degeneration:Degeneration here means the loss of the distinct feature of RR, which is frequent preemption to ensure fair CPU sharing.As the quantum grows excessively large, RR loses this characteristic and becomes similar to FCFS, an entirely different scheduling strategy.Example:Processes:P1 (Burst: 5ms), P2 (Burst: 8ms), P3 (Burst: 12ms).Quantum:Very Small Quantum (2ms): Processes are frequently preempted, and CPU time is evenly distributed among all processes.Very Large Quantum (e.g., 100ms): Each process completes entirely in the order it arrives, just like FCFS.Conclusion:Degeneration in this case refers to the scenario where the core behavior of an algorithm (fair preemption in RR) is lost, and it starts behaving like another algorithm (FCFS) under specific conditions (large quantum). 2 2 replyShare Please log in or register to add a comment.
6 6 votes Ans A)using very large time slices (quantas) degenerates into First-Come First served (FCFS) algorithm srestha answered Jun 12, 2016 srestha comment Share Follow See all 2 Comments 2 2 Comments reply teja1521 commented Jan 7, 2020 reply Follow flag Can you explain option B? 0 0 replyShare Kshitij_Rabadey commented Dec 22, 2025 reply Follow flag it increases context switching there by increasing cpu overhead 0 0 replyShare Please log in or register to add a comment.