Difficulty: Easy
Correct Answer: CD\
Explanation:
Introduction / Context:
Efficient command-line navigation requires knowing how to jump to key locations quickly. In DOS, returning to the root directory of the current drive is a frequent operation when resetting paths or launching programs from top-level folders.
Given Data / Assumptions:
Concept / Approach:
The CD (change directory) command accepts a backslash as a special path meaning the root of the current drive. Therefore, CD\ instantly moves you to, for example, C:\ regardless of how deep you are. CD.. moves only one level up; CD \root refers to a literal directory named root, which may not exist; CD\.. is a malformed combination for this purpose.
Step-by-Step Solution:
Verification / Alternative check:
Issuing CD.. repeatedly will eventually reach the root, but CD\ performs it in a single step.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing the backslash role in DOS (root separator) with forward slashes used for options in some commands.
Final Answer:
CD\
Discussion & Comments