Difficulty: Medium
Correct Answer: latency plus seek time
Explanation:
Introduction / Context:
Disk performance analysis relies on understanding the separate contributors to delay: seek time, rotational latency, and transfer (transmission) time. Many definitions distinguish between the time to position the head (prepare) and the time to actually transfer data once positioned.
Given Data / Assumptions:
Concept / Approach:
If the question emphasizes “prepare a disk drive mechanism for a block of data to be read,” the preparation is complete when the head is in position and the correct sector is under the head. That comprises seek time + rotational latency. Transfer time begins after preparation, during the actual reading of the block.
Step-by-Step Solution:
Verification / Alternative check:
Storage texts define access time as seek + latency, and total service time as access time + transfer time. The wording “prepare the mechanism” maps to access time.
Why Other Options Are Wrong:
Common Pitfalls:
Using “access time” and “transfer time” interchangeably; forgetting that large sequential reads amortize seek/latency over many blocks.
Final Answer:
latency plus seek time
Discussion & Comments