Difficulty: Easy
Correct Answer: A-4, B-3, C-2, D-1
Explanation:
Introduction / Context:DOS utilities provide file, directory, and disk-maintenance operations. Knowing what each command does is essential for legacy systems and foundational operating-system literacy.
Given Data / Assumptions:
Concept / Approach:Map each command to its main purpose from standard DOS help manuals: ATTRIB changes attributes; SCANDISK checks/repairs; MOVE relocates files; TREE displays directory hierarchy.
Step-by-Step Solution:
ATTRIB → attribute operations like +H (hidden), +R (read-only) → A-4.SCANDISK → surface/media and filesystem checks → B-3.MOVE → transfers files to another directory or drive → C-2.TREE → prints directory and subdirectory structure → D-1.Verification / Alternative check:Running 'command /?' or DOS manuals confirms each mapping (ATTRIB, SCANDISK, MOVE, TREE) with the listed functions.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:A-4, B-3, C-2, D-1
Discussion & Comments