Question: Implement the Round Robin scheduling algorithm using any programming language. Inputs (no. of processes, arrival time, duration, etc.) and outputs (sequence of processes with timeline


Implement the Round Robin scheduling algorithm using any programming language. Inputs (no. of processes, arrival time, duration, etc.) and outputs (sequence of processes with timeline and turnaround time) will be strictly as per your previous assignment on FCFS. Note that, additional input will be Time Quantum. And, turnaround time for each process will be shown only once (when the process terminates). Consider the following example for clarification: Example: Time Quantum = 3 = Process Arrival Time (AT) Burst Time (BT) P1 0 8 co P2 5 2 2 P3 1 7 24 6 3 P5 8 5 5 Example: Time Quantum = 3 Process Arrival Time (AT) Burst Time (BT) P1 0 0 8 8 P2 5 2 P3 1 7 P4 6 3 P5 00 8 5 Theoretically, you know the Gantt chart would be like this: P1 P3 P1 P2 P4 P3 PS P1 P3 PS 0 6 9 11 14 17 20 22 23 Your output should be as per the following format (similar to FCFS assignment): Si no. Process Timeline Turnaround time (TAT) 1 2 P1 P3 P1 P2 3 4 (TAT fo P2 here)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
