Which command is used to delete the directory that is empty? A. Del *.* B. RD C. Erase D. MD

Del *.*
RD
Erase
MD

The correct answer is B. RD (Remove Directory).

The RD command is used to delete a directory. If the directory is empty, it will be deleted immediately. If the directory is not empty, you will be prompted to delete it.

The Del command is used to delete a file. It can also be used to delete multiple files at once. To delete a directory, you would use the Del /F command.

The Erase command is a synonym for the Del command. It can be used to delete a file or a directory.

The MD command is used to create a directory. It cannot be used to delete a directory.

Here is an example of how to use the RD command to delete a directory:

rd c:\temp\my_directory

This command will delete the directory “my_directory” from the “temp” folder on the C: drive.

If the directory is empty, it will be deleted immediately. If the directory is not empty, you will be prompted to delete it.