Difficulty: Easy
Correct Answer: Files are not stored in consecutive clusters
Explanation:
Introduction / Context:
On spinning hard disks, file systems allocate clusters to store file data. Over time, as files are created, deleted, and grown, free space becomes scattered, and files can be split across many non-contiguous fragments, increasing seek overhead and slowing access.
Given Data / Assumptions:
Concept / Approach:
Fragmentation is a logical placement issue: the bytes of a file are distributed across non-adjacent clusters. The disk head must perform extra seeks to assemble the file, increasing latency. Defragmentation utilities reorder clusters to place file extents together, reducing head movement.
Step-by-Step Solution:
Verification / Alternative check:
Defrag tools display fragmentation maps. After defrag, files occupy longer contiguous ranges, and measured seek counts per MB drop, improving read speeds on HDDs.
Why Other Options Are Wrong:
Common Pitfalls:
Defragging SSDs (unnecessary and wears flash); assuming fragmentation is the only cause of slowness (thermal throttling, malware, or low RAM can also slow systems).
Final Answer:
Files are not stored in consecutive clusters
Discussion & Comments