in Operating System edited by
11,099 views
29 votes
29 votes

Which of the following disk scheduling strategies is likely to give the best throughput?

  1. Farthest cylinder next

  2. Nearest cylinder next

  3. First come first served

  4. Elevator algorithm

in Operating System edited by
11.1k views

4 Comments

what is Farthest cylinder next algorithm
1
1

Option (B) and (D) both are acceptable. For more details please check comment of @Vicky rix ji.

1
1
edited by
As throughput is asked can it be interpreted as at any point of time during disk scheduling which Algo gives max request processing per second. Which implies minimum head movements.
0
0

@tusharp It should be minimum head movements not maximum as overall seek latency is minimum when head movements are minimum thus maximum throughput.

0
0

6 Answers

1 vote
1 vote
A- Like always choose more distance from itself , so it can't be answer

B- its SSTF

C- its FCFS

D-Its SCAN

> FCFS throughput is less then SSTF so it's also not answer

> now the fight b//w SSTF and SCAN

SSTF always serve nearest cylinder first , so necessary movements gets reduced . and in case of SCAN it goes to one end and come back ,which takes more time to complete task , so SSTF throughput is best .
–4 votes
–4 votes
D.

Both the Nearest Cylinder and Elevator are high on throughput.But I will go with ELEVATOR.

Reason:

Nearest Cylinder Next algo will have a overhead of computing the nearest cylinders of the queue.
Answer:

Related questions