Difficulty: Easy
Correct Answer: sectors
Explanation:
Introduction / Context:Understanding how magnetic disks organize data physically is essential for topics such as file systems, disk scheduling, and performance tuning. Tracks, sectors, and blocks are foundational terms that map the physical medium to logical storage.
Given Data / Assumptions:
Concept / Approach:
The smallest addressable physical unit on a track is a sector. Traditionally, sectors store a fixed number of bytes (commonly 512 bytes or 4096 bytes in advanced format drives). File systems build larger logical blocks on top of physical sectors for efficiency and alignment.
Step-by-Step Solution:
Identify the hierarchical structure: platter → surface → track → sector.Recall that controllers read/write integral sectors, not arbitrary byte ranges.Therefore, the subdivision of a track into addressable units is called sectors.Verification / Alternative check:
Disk specifications and low-level formatting utilities reference CHS (cylinders, heads, sectors), confirming sectors are the canonical subdivision of tracks.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing logical blocks with physical sectors; assuming all tracks have the same number of sectors (not necessarily true in zoned recording).
Final Answer:
sectors
Discussion & Comments