If you type a __________ name and press enter, MS-DOS will execute the commands in sequence.

a. program
b. macro
c. batch file
d. none of the above

c. batch file

Computer Science & Information Technology

You might also like to view...

Where are the Windows features files stored within Windows Server 2016?

A. C:\Windows\Features B. C:\Windows\WinSxS C. C:\Windows\System32 D. C:\Windows\Install

Computer Science & Information Technology

Consider the following do-while loop, whose job is to check for a valid customer identification number between the numbers 100 and 1999:do{   cout << "\nEnter an identification number: ";   cin >> idNum;}while ( // Missing expression goes here);Which of the following is the correct missing expression?

A. idNum >= 100 && idNum <= 1999 B. idNum < 100 || > 1999 C. idNum < 100 || idNum != 2000 D. idNum < 100 || idNum > 1999

Computer Science & Information Technology