OS Lab - Experiment No. 9
OS Lab - Experiment No. 9
Roll No :- 2201905
PRN No. :- 2030403246004
Subject :- OS Lab
EXPERIMENT NO-9
AIM:
IMPLEMENT SHORTEST JOB SCHEDULING ALGORITHMS.
THEORY:
SJF Scheduling in OS
Shortest Job First (SJF) Scheduling in OS Shortest Job First is a Preemptive or
Non-Preemptive algorithm. In the shortest job first algorithm, the job having shortest or less burst time
will get the CPU first. It is the best approach to minimize the waiting time It is simple to implement in the
batch operating system because in this CPU time is known in advance, but it is not used in interactive
systems, because in interactive systems, CPU time is not known. Characteristics of Shortest Job First
Scheduling
1.SJF algorithm is helpful in batch operating where the waiting time for job completion is not critical.
2.SJF improves the throughput of the process by ensuring that the shorter jobs are executed first, thus
the possibility of less turnaround time.
3.SJF enhances the output of the job by executing the process, which is having the shortest burst
time. Advantages of Shortest Job First (SJF) Scheduling e advantages of Shortest Job First
scheduling are:
1.Preemptive SJF
If the processor knows the Burst time of the processes in advance, the scheduling of the process can be
implemented successfully. But practically it’s impossible.When all the processes are available at the same
time, then the Shortest Job Scheduling algorithm becomes optimal.
2.Non-Preemptive SJF: – In Non-PreemptiveScheduling, if a CPU is located to the process, then the
process will hold the CPU until the process enters into the waiting state or terminated. Example of Non-
Preemptive SJF Scheduling:In the following example, we have 4 processes with process Id P0, P1, P2,
and P3. The arrival time and burst time of the processes are given in the following
P0= 16-8=8
P1= 5-5=0
P2=12-9=3
P3=6-2=4
=15/4
=3.75
P2=16-4=12
P3=7-1=6
=39/4
=9.75
The GANTT chart of preemptive shortest job first scheduling is: SJF
Scheduling
2 Preemptive SJF Scheduling: – In this, jobs are moved into the ready queue when they arrive. Those
Processes which have less burst time begins its execution first. When the process with less burst time
arrives, then the current process stops execution, and the process having less burst time is allocated with
the CPU first.
Example of Preemptive SJF Scheduling: In the following example, we have 4 processes with process ID
P1, P2, P3, and P4. The arrival time and burst time of the processes are given in the following table.
The waiting time and turnaround time are calculated with the help of the following formula.
P1=31-18=13
P2=4-4=0
P3=12-7=5
P4=4-2=2
=20
P1=31-0=31
P2=5-1=4
P3=14-2=12
P4=7-3=4
=12.75
The GANTT chart of preemptive shortest job first scheduling is:
SJF SchedulingG
Conclusion:- we got to know about how Implement Shortest Job scheduling Algorithms.