Difficulty: Easy
Correct Answer: Nesting
Explanation:
Introduction / Context:
Operating systems organize files in hierarchical directory trees. Creating folders inside other folders establishes a parent–child relationship, which has a specific term in file-system vocabulary.
Given Data / Assumptions:
Concept / Approach:
When a directory is placed within another, it is said to be “nested.” This reflects the hierarchical nesting of structures from root (e.g., C:\) down to deeper levels (e.g., C:\DATA\PROJECTS\2025).
Step-by-Step Solution:
Use MD PARENT to create a parent directory.Use MD PARENT\CHILD to create a subdirectory inside PARENT.This arrangement is called nesting because CHILD is nested within PARENT.
Verification / Alternative check:
Run TREE or DIR /S to visualize that subfolders are contained under their parent, confirming the nested hierarchy.
Why Other Options Are Wrong:
Directing, making, and backing (Options A/B/C) are not standard DOS terms describing this hierarchy.“None of the above” is incorrect because “nesting” is the accepted term.
Common Pitfalls:
Final Answer:
Nesting
Discussion & Comments