I was trying to answer this questions If anyone can help please A multiprogramming system uses the Round Robin scheduling policy with a quantum of 5 time units.
A process described below arrives at time 0:
CPU burst – 8 time units
I/O burst – 10 time units
CPU burst – 13 time units
I/O burst– 10 time units
CPU burst – 7 time units
Answer the following questions:
Describe the events in the process lifetime, and the state transitions it will undergo. For every type of state transition indicate whether it is voluntary or not, and justify your answer. Assume that the process completes its execution in the three CPU bursts presented. Cplt - Complete
this was my attempt
Cplt Cplt Cplt
| P1 | P2 | P3 | P4 | P5 | P1 | P2 | P3 | P4 | P5 | P3 |
0 5 10 15 20 25 28 33 38 43 45 48
Events ; New -> Ready -> waiting -> runing -> Terminated
I give you my solution, but I don't know if I understand the problem at all.