Which command is used to display the subdirectory structure of the currently logged drive and pause the screen display after each screen full of the information?
A. Tree
B. Deltree/f
C. Dir | more
D. Tree | more
Answer: Option D
Solution (By Examveda Team)
Tree | more is the correct command to display the subdirectory structure of the currently logged drive and pause the screen display after each screen full of information.Tree command displays the directory structure in a tree-like format. | more is a pipe operator in DOS that sends the output of one command (in this case, Tree) to another command (more), which pauses after each screenful of output.
Deltree /f is used to delete directories and files forcefully, not to display directory structures.
Dir | more displays the list of files and directories in the current directory and pauses after each screenful of output. It does not display the entire subdirectory structure like Tree does.
Therefore, the correct answer is Option D: Tree | more.
Join The Discussion