Process - Arrival Time - Burst Time
P1 - 0.0 - 7
P2 - 0.5 - 3
P3 - 1.0 - 2
Additional info: Schedule is non-pre-emptive.
Question: What is the average turnaround time (ATT) for these processes with the Shortest Job First (SJB) scheduling algorithm?
What I was thinking either: P3,P2,P1 but since it's non-pre-emptive and P1 arrives at 0.0 it's P1,P2,P3
ATT P1 = 0
ATT P2 = 6,5
ATT P3 = 9
Am I doing this right?