Difficulty: Medium
Correct Answer: D
Explanation:
Introduction / Context:
Legacy DOS/Windows systems assign drive letters based on partition type and physical disk order. Knowing this order is essential when adding a second hard drive or planning multi-boot configurations.
Given Data / Assumptions:
Concept / Approach:
The classic assignment sequence is: primary partitions on physical disks first (in controller order), then logical drives within extended partitions, again by disk order. The first hard disk’s primary partition becomes C:. The second hard disk’s primary partition receives the next letter, which is D:. After primary partitions, the system assigns letters to logical drives, starting with those on the first disk, then those on the second.
Step-by-Step Solution:
Verification / Alternative check:
Installing a clean DOS/Windows 9x system and creating the described partitioning shows the above order in FDISK and Explorer. Documentation from the period confirms this precedence rule for primary partitions ahead of logical drives across disks.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting that optical drives and card readers can shift lettering; mixing SCSI/IDE device order; assuming logical drives on Disk 0 get letters before Disk 1’s primary (not true in classic rules).
Final Answer:
D
Discussion & Comments