• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/10

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

10 Cards in this Set

  • Front
  • Back

The ASCII standard defines how many 8-bit characters?


A. 64


B. 256
C. 512
D. 64,000


B. The ASCII standard has 256 characters because that’s all 8 bits can handle!

Which of the following is the correct path for a file named yoda.txt on the C: drive in a directory called Jedi that’s in a directory called Rebels that’s in the root directory?


A. C:\Root\Jedi\yoda.txt
B. C:\Jedi\Rebels\yoda.txt
C. C:\Rebels\Jedi\yoda.txt
D. C:\Root\Rebels\Jedi\yoda.txt


C. You’ll find the yoda.txt file in the C:\Rebels\Jedi\ folder.

Which of the following commands will delete all of the files in a directory?


A. del *.* B. del all C. del ?.? D. del *.?


A. You can use the *.* wildcard combination to affect every file in a particular folder.

What command enables you to make a new directory in a Windows 7 Profes- sional system?


A. mf B. mkfol C. md D. makedir


C. md enables you to make a directory or folder. You can also use the older form, mkdir.

What command do you type at the Run dialog box to access the command-line interface in Windows XP?


A. cmd B. conand C. msdos D. cp


A. Use the cmd command in the Run dialog box to access a command line in Windows XP.

Joey wants to change the name of a file from start.bat to hammer.bat. Which of the following commands would accomplish this feat?


A. ren hammer.bat start.bat
B. ren start.bat hammer.bat
C. rename /s start.bat hammer.bat D. rename /s hammer.bat start.bat

B. The ren command with the proper syntax—ren start.bat hammer.bat—will rename the file.

What types of characters are the asterisk (*) and the question mark (?)?


A. Wildcards
B. Optionals
C. Designators


D. Switches


A. The asterisk and question mark characters are wildcards when used with command-line commands.

What is the command to make myfile.txt read-only?


A. attrib +r myfile.txt
B. attrib –r myfile.txt
C. readonly myfile.txt


D. myfile.txt /readonly


A. The command attrib +r myfile.txt will make myfile.txt read-only.

To learn the syntax of the dir command, what can you type?


A. help dir


B. dir /?
C. dir /help
D. Both A and B.


D. To learn the ins and outs of any command-line program, type the command followed by the /? switch or else type help and then the command.

What is the command to quit the command-line interface?


A. exit B. bye C. quit D. stop


A. Type exit and press the enter key to bail out of a command-line interface in Windows.