Department Of Computer Science & engineering And IT
Class : CSE V & IT
Subject: Principals Of Operating Systems
Tutorial Sheet –3
1) Consider the following set of processes, with the length of the CPU-burst time given in milliseconds:
Process Burst time Priority
P1 10 3
P2 1 1
P3 2 3
P4 1 4
P5 5 2
The processes are assumed to have arrived in order P1, P2, P3, P4, P5, all at time 0.
I. Draw four Gantt Charts illustrating the execution of these
processes using FCFS, SJF, a nonpreemptive priority (a smaller priority implies
a higher priority), and RR (Quantum=1) scheduling.
II. What is the turnaround time of each process for each of the scheduling algorithms
in part a?
III. What is the waiting time of each process for each of the Scheduling algorithms
in part a? iv.Which of the schedules in part results in the minimal average
waiting time (over all processes). (B.E.,May 2001)
2). Suppose that the following processes arrive for execution at the times indicated. Each process will run the listed amount of time. In answering the questions, use Nonpreemptive scheduling and base all decisions on the information you have at the time the decision must be made.
Process Arrived Time Burst Time
P1 0.0 8
P2 0.4 4
P3. 1.0 1
1.What is the average turnaround time for these processes with the FCFS scheduling
algorithm?
2. What is the average turnaround time for these processes for the SJF scheduling
algorithm?
3. The SJF algorithm is supposed to improve performance, but notice that
We chose to run process P1 at time 0 because we did not know that two shorter processes would arrive soon. Compute what the average turnaround time will be if the CPU is left idle for the first 1 unit and then SJF scheduling is used.
Remember that processes P1 and P2 are waiting during this idle time, so their waiting time may increase. This algorithm could be known as future knowledge scheduling.