Which command is used to suppress the prompt that asks you to confirm that you want to delete the directory? A. DELTREE B. DELTREE/F C. DEL*.* D. ERASE *.* E. None of the above

DELTREE
DELTREE/F
DEL*.*
ERASE *.* E. None of the above

The correct answer is: B. DELTREE/F

DELTREE is a command-line utility for deleting directories and all of their contents. The /F switch suppresses the prompt that asks you to confirm that you want to delete the directory.

The other options are incorrect because:

  • A. DELTREE does not suppress the prompt that asks you to confirm that you want to delete the directory.
  • C. DEL. deletes all files in the current directory, but it does not delete the directory itself.
  • D. ERASE . is the same as DEL..
  • E. None of the above is the correct answer.