Input Numerical-1
Input Numerical-1
Calculate average waiting time and average turnaround time for all these process using SJF and Priority
Scheduling algorithm?
/////////////////////////////////////////////////////////////////////////////////////////////
EXPECTED OUTPUT(SJF)
p3 0 1 0 1
p2 0 3 1 4
p1 0 8 4 12
/////////////////////////////////////////////////////////////////////////////////////////////
EXPECTED OUTPUT(Priority)
p3 0 1 3 0 1
p1 0 8 2 1 9
p2 0 3 1 9 12