edited by
868 views
0 votes
0 votes
CPU bound jobs will hold CPU until exit or I/O. Long periods where no I/O requests issued, and theCPU is held resulting in poor I/O device utilization. This degradation in performance can be seen inwhich of the following?

(A)SJF  ( B) RR    (C)FCFS   (D)SRTF
edited by

1 Answer

3 votes
3 votes
The ans is FCFS. It is because if a process with higher CPU time comes first the cpu will be busy executing it and the other processes which require very less CPU time and more I/O time would keep waiting . So the overall I/O device utilization would be poor. This would not be the case with srtf, round robin or sjf.

Related questions

0 votes
0 votes
2 answers
1