Difficulty: Easy
Correct Answer: MD
Explanation:
Introduction / Context:
Organizing files in DOS requires creating directories to group related documents and programs. DOS provides a concise command to create a directory, with an equivalent long form for users who prefer explicit names.
Given Data / Assumptions:
Concept / Approach:
The MD command (alias MKDIR) creates a new directory entry in the filesystem. If intermediate directories do not exist, classic DOS requires creating them one level at a time. The DIR command lists contents; it does not create folders. MAKE and DD are not standard DOS commands for directory creation.
Step-by-Step Solution:
Verification / Alternative check:
Attempting to run MKDIR C:\WORK performs the same action, demonstrating the MD/MKDIR equivalence.
Why Other Options Are Wrong:
Common Pitfalls:
Including trailing spaces or reserved device names (for example, PRN) that can cause errors.
Final Answer:
MD
Discussion & Comments