While working with MS-DOS, which command is used to move file from one directory to another? A. RENAME B. COPY C. MOVE D. CP E. None of the above

RENAME
COPY
MOVE
CP E. None of the above

The correct answer is C. MOVE.

The MOVE command is used to move files from one directory to another. It can also be used to rename files. The syntax for the MOVE command is:

MOVE source destination

where source is the name of the file or files to be moved, and destination is the name of the directory to which the files should be moved. If destination does not exist, it will be created. If destination is a file, the files will be moved into it.

The RENAME command is used to rename files. The syntax for the RENAME command is:

RENAME oldname newname

where oldname is the name of the file to be renamed, and newname is the new name for the file.

The COPY command is used to copy files. The syntax for the COPY command is:

COPY source destination

where source is the name of the file or files to be copied, and destination is the name of the file or directory to which the files should be copied. If destination does not exist, it will be created. If destination is a file, the files will be copied into it.

The CP command is a synonym for the COPY command.

E. None of the above is not the correct answer.