Difficulty: Easy
Correct Answer: Logical, Extended, Primary
Explanation:
Introduction / Context:
FDISK in DOS manages Primary and Extended partitions. An Extended partition is a container that holds one or more Logical drives. To fully remove every partition cleanly (for example, after a severe infection), you must respect the containment hierarchy when deleting.
Given Data / Assumptions:
Concept / Approach:
Because Logical drives live inside the Extended DOS partition, you cannot delete the Extended container while any Logical drives still exist. Therefore, delete Logical drives first, then delete the Extended DOS partition, and finally delete the Primary DOS partition. This order respects dependency and prevents FDISK errors.
Step-by-Step Solution:
Verification / Alternative check:
FDISK will not allow deleting the Extended partition if any Logical drives remain, confirming the required order.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting hidden recovery partitions or non-DOS partitions; use appropriate tools to remove them if present.
Final Answer:
Logical, Extended, Primary
Discussion & Comments