Difficulty: Easy
Correct Answer: 512 bytes
Explanation:
Introduction / Context:
Understanding sector size helps with low-level disk utilities, partition alignment, and data recovery. For decades, the de facto standard sector size on PC-class hard disks has been 512 bytes, even as logical block size abstraction evolved.
Given Data / Assumptions:
Concept / Approach:
Sector size is the minimum addressable logical block on legacy disks. While modern Advanced Format introduces 4096-byte physical sectors, logical 512-byte addressing remains common for compatibility. Therefore, the standard sector size answer in entry-level PC tech contexts is 512 bytes.
Step-by-Step Solution:
Verification / Alternative check:
Disk utilities (fdisk-like tools) and OS APIs traditionally report 512-byte logical sector sizes unless specifically configured otherwise.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing physical 4K sectors with logical emulation; mixing filesystem cluster sizes (which are larger) with disk sector size.
Final Answer:
512 bytes
Discussion & Comments