-
Consider the 3 processes, P1, P2 and P3 shown in the table :
The completion order of the 3 processes under the policies FCFS and RR2 (Round Robin scheduling with CPU quantum 2 time units) are
-
- FCFS : P1, P2 , P3 RR2 : P1, P2 , P3
- FCFS : P1, P3 , P2 RR2 : P1, P3 , P2
- FCFS : P1, P2 , P3 RR2 : P1, P3 , P2
- FCFS : P2, P1 , P3 RR2 : P1, P2 , P3
- FCFS : P1, P2 , P3 RR2 : P1, P2 , P3
Correct Option: C
Order P1 → P2 → P3
Round robin Here, not P2 because in the ready queue P2 comes later than P3.
Here, not P3 because in the ready queue P1 comes first than P3.
Order P1 → P3 → P2