Difficulty: Easy
Correct Answer: Cylinder
Explanation:
Introduction / Context:
Understanding physical disk geometry helps explain why some I/O operations are faster than others. By minimizing head movement (seeks), the system can read related blocks with lower latency. The construct that groups same-radius tracks across all platters is central to that optimization.
Given Data / Assumptions:
Concept / Approach:
A cylinder is the vertical alignment of tracks of equal radius on every platter surface. Because each head already sits over the correct radius, switching between heads to access another surface at the same track number requires no mechanical seek—only an electronic head switch and rotation.
Step-by-Step Solution:
Verification / Alternative check:
Filesystem layout strategies often place related data within the same cylinder group to reduce average seek time and improve throughput.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Cylinder.
Discussion & Comments