DOS (Disk Operating System)

  Home  Operating System  DOS (Disk Operating System)


“DOS related Frequently Asked Questions by expert members with experience in Disk Operating System. These questions and answers will help you strengthen your technical skills, prepare for the new job test and quickly revise the concepts”



216 DOS (Disk Operating System) Questions And Answers

103⟩ Each time you turn on your computer, it will check on the control file a. Command.com, io.sys b. Command.com, date.com, dir.com c. Command.com, io.sys, msdos.sys d. Chkdsk.exe

c. command.com, io.sys, msdos.sys

Explanation:

command.com, io.sys and msdos.sys are the essential system files of MS-Dos. Loading these files from disk into memory is known as booting. Booting is the process of preparing your computer to work.

 231 views

109⟩ Only filenames and extensions are to be displayed in wide format, which command you'll use? a. Dir/w b. Dir a c. Dir/s d. Dir/b

a. Dir/w

Explanation:

Dir/w only displays the file names and extensions excluding file created date/time, file size. Second option dir a: will list the contents of A drive (floppy drive), third dir/s lists current directory and its subdirectories too, dir/b displays bare format, that means, it just makes a list of files, no more information.

 227 views

115⟩ Which command is used to display all the files having the (.exe) extension but different filename? a. Dir filename.* b. Dir filename.ext c. Dir *.sys d. Dir *.ext

d. Dir *.ext

Explanation:

First two options are obviously wrong since specifying filename will list for that filename only. Since we need to list only with .ext extension fourth option is correct. Third option displays all files with sys extension.

 251 views