DOS formatting basics: When MS-DOS formats a disk, it automatically creates the top-level directory on the disk. What is this directory called?
-
Amain
-
Broot
-
Carea
-
Dborder
Answer
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:
- Formatting creates filesystem structures including boot sector, file allocation tables, and the initial directory.
- The top-level directory has a specific, conventional name.
- This directory exists at the highest level of the drive's directory tree.
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:
Consider the directory tree analogy: tree starts at a root.DOS path syntax shows a backslash from the drive letter to indicate root (for example, C:\).Therefore, the directory created automatically at format time is the root directory.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:
- Main, area, border: Not standard filesystem terms in DOS.
- Empty option: Not applicable.
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