What command can you add to the AUTOEXEC.BAT file so that your computer temporarily stops in the execution of the file before continuing? A. Pause B. Halt C. Wait x.xx seconds D. Wait until Files=”x” E. None of the above

Pause
Halt
Wait x.xx seconds

The correct answer is A. Pause.

The Pause command causes the command interpreter to pause and display the message “Press any key to continue . . . “. The user can then press any key to continue execution of the batch file.

The Halt command causes the command interpreter to stop executing the batch file and return to the operating system.

The Wait x.xx seconds command causes the command interpreter to pause for x.xx seconds before continuing execution of the batch file.

The Wait until Files=”x” command causes the command interpreter to pause until a file named “x” is created.

None of the above options cause the command interpreter to pause in the execution of the batch file before continuing.