Questions: Round-Robin (RR) Scheduling

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

Three processes P1 (24ms burst), P2 (3ms burst), and P3 (3ms burst) arrive simultaneously. With a quantum of 4ms, when does P2 finish?

AAt 3ms — P2 runs first and completes immediately
BAt 7ms — P1 runs 4ms, then P2 runs its 3ms and finishes
CAt 10ms — all three processes share the CPU equally before any finishes
DAt 4ms — P2 gets a full quantum before being preempted
Question 2 Multiple Choice

A system administrator reduces the Round-Robin time quantum from 50ms to 1ms. Which of the following most accurately describes the result?

AThroughput and response time both improve because processes get CPU time more frequently
BResponse time improves but throughput may decrease because the system spends more time on context switching overhead
CPerformance is unchanged because every process still gets the same total CPU time
DThe system behaves more like FCFS because context switches become rare
Question 3 True / False

Round-Robin scheduling guarantees that every process in the ready queue will eventually receive CPU time, regardless of how long any individual process runs.

TTrue
FFalse
Question 4 True / False

Reducing the time quantum in Round-Robin generally improves overall system performance.

TTrue
FFalse
Question 5 Short Answer

Explain why a very large time quantum in Round-Robin degrades into FCFS-like behavior, and why this is problematic for interactive systems.

Think about your answer, then reveal below.