| A | B |
| What command would find all the files on the default drive that have a file extension of .EXE? | DIR *.EXE |
| If the OS would only accept uppercase letters, that would mean that the OS is what? | Case sensitive |
| What command can be used to change the default drive to Drive A? | A: |
| What command can be used to change the default drive to Drive B? | B: |
| What command would look for a file called MYFILE.EXT on the disk in Drive B? | DIR B:MYFILE.EXT |
| What command would list the files on the defaultdisk across the screen, show only the names of the files, and not include the size, date, or time.? | DIR /W |
| What command would list only the files on Drive A that begin with MY, have 5 characters or less and have any file extensions? | DIR A:MY???.* |
| If the default drive was the root of B, what would be displayed on the screen? | B:\> |
| If the OS cannot locate a file that you requested, what is displayed on the screen? | File not found |
| The /P and /W are examples of what? | Parameters |