Difficulty: Easy
Correct Answer: root
Explanation:
Introduction / Context:
Filesystems in DOS/Windows organize files into a hierarchy that begins at a top-level directory. Knowing the correct terminology helps when describing paths, troubleshooting, and scripting.
Given Data / Assumptions:
Concept / Approach:
The top-level directory is universally called the “root” directory. Path representations like C:\ and A:\ refer to the root. All other folders branch from this starting point, forming a tree structure underneath.
Step-by-Step Solution:
Verification / Alternative check:
DIR \ invoked at a drive letter lists the root contents. Documentation for FORMAT and filesystem structures always mentions the root directory as the top level.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing “root directory” with “home directory” terminology from UNIX-like systems; DOS uses root to refer strictly to the top of the drive tree.
Final Answer:
root
Discussion & Comments