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:
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