Q2) Write a program to calculate average waiting time for Shortest Job First algorithm for following table and display o
Posted: Fri May 20, 2022 2:55 pm
Q2) Write a program to calculate average waiting time for Shortest Job First algorithm for following table and display output. Process Burst Time Arrival time P1 5 0 P2 6 1 P3 2. 2 P4 4 3 P5 8 4 Q3) Write a program to calculate page fault by using LRU (least recently used) for the following reference string: 1, 3, 2, 3, 4, 2, 1, 3, 4, 2, 1, 4, 3, 1, 3.