Question
Easy

Let disk request come to a disk driver for cylinders in the order 10, 22, 20, 2, 40, 6 and 38, at the time when the disk driver is reading from cylinder 20. If the seek time is 6 ms per cylinder then, the total seek time for the disk arm scheduling time algorithm FCFS (First Come First Serve) is:

1
360 ms
2
212 ms
3
848 ms
4
876 ms
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Computer System & Hardware Fundamentals
Topic: Computer System
Correct Answer
Option D
Explanation

The correct option is (4): This question requires us to calculate the total seek time for disk scheduling using the First Come First Serve (FCFS) algorithm. The FCFS algorithm processes disk requests strictly in the order they arrive in the queue, regardless of the current position of the disk head, leading to potentially long seek times. We begin at the current cylinder position of 20, and the requests are served…Read More