Difficulty: Easy
Correct Answer: sectors
Explanation:
Introduction / Context:
Magnetic disks organize data in a hierarchy of physical and logical structures. Understanding terms like cylinder, head, track, and sector is foundational for storage troubleshooting, imaging, and partitioning.
Given Data / Assumptions:
Concept / Approach:
Each track is split into fixed-size segments called sectors (historically 512 bytes, now often 4,096 bytes on Advanced Format drives). The controller addresses data by cylinder/head/sector or via LBA (logical block addressing), where each block equals one sector unit logically presented to the OS.
Step-by-Step Solution:
Recognize the geometry: platter → surfaces (heads) → tracks → sectors.Match the term that directly subdivides tracks: sectors.Note that file systems group sectors into clusters later, which is a higher-level construct.
Verification / Alternative check:
Disk utilities show sector counts per track and total LBA sectors; file system tools show cluster size as multiples of sectors.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing OS-level clusters with hardware-level sectors; clusters vary by file system, sectors are hardware/format-level units.
Final Answer:
sectors
Discussion & Comments