header bg

Scan QR code or get instant email to install app

Question:

On a Windows device, you are working at the command prompt, on the C: drive. Now, you are tasked with creating a directory named files on the D: drive. You will have to type in which of the following syntax to finish the task?

A md d:\files
explanation

The commands cd, md, and rd are used to alter, create, and remove directories, respectively. They are abbreviations for the commands chdir, mkdir, and rmdir. The command syntax is md [drive:]path, so the directory appears after the drive letter when you type it. Because you are not on the drive, the drive letter must be included.

Related Information