Module 3 Review Quiz Flashcards

1
Q

A directory is a type of file. True or False?

a. True
b. False

A

a. True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which command would a user type on the command line to find out the current directory in the directory tree?
a. pd
b. cd
c. where
d. pwd

A

d. pwd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which of the following is an absolute pathname? (Choose all that apply.)

a. Home/resume
b. C:\myfolder\resume
c. resume
d. /home/resume
e. C:home/resume

A

b. C:\myfolder\resume
d. /home/resume

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A special device file is used to ___________.
a. enable proprietary custom-built devices to work with Linux

b. represent hardware devices such as hard disk drives and ports

c. keep a list of device settings specific to each individual user

d. do nothing in Linux

A

b. represent hardware devices such as hard disk drives and ports

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

If a user’s current directory is /home/mary/project1, which command could she use to move to the etc directory directly under the root?

a. cd ..	
b. cd /home/mary/etc	
c. cd etc	
d. cd /etc	
e. cd \etc
A

d. cd /etc

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

After typing the ls –a command, you notice a file whose filename begins with a dot ( . ). What does this mean?

a. It is a binary file.

b. It is a system file.

c. It is a file in the current directory.

d. It is a hidden file.

A

d. It is a hidden file.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

After typing the ls –F command, you notice a filename that ends with an * (asterisk) character. What does this mean?

a. It is a hidden file. 	
b. It is a linked file.	
c. It is a special device file.	
d. It is an executable file.
A

d. It is an executable file.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

The vi editor can function in which two of the following modes? (Choose both that apply.)

a. text
b. command
c. input
d. interactive
e. insert

A

b. command
e. insert

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

The less command offers less functionality than the more command. True or False?
a. True
b. False

A

b. False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Which command searches for and displays any text contents of a binary file?

a. text 
b. strings	
c. od	
d. less
A

b. strings

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How can a user switch from insert mode to command mode when using the vi editor?

a. Press the Ctrl+Alt+Del keys simultaneously.

b. Press the Del key.

c. Type a : character.

d. Press the Esc key.

A

d. Press the Esc key.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

If “resume” is the name of a file in the home directory off the root of the filesystem and your present working directory is home, what is the relative name for the file named resume?

a. /home/resume	 
b. /resume	
c. resume	
d. \home\resume
A

c. resume

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What will the following wildcard regular expression return: file[a-c]?

a. filea-c	 
b. filea, filec	
c. filea, fileb, filec	
d. fileabc
A

c. filea, fileb, filec

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What will typing q! at the : prompt in command mode do when using the vi editor?

a. quit as no changes were made

b. quit after saving any changes

c. nothing because the ! is a etacharacter

d. quit without saving any changes

A

d. quit without saving any changes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

A user types the command head /poems/mary. What will be displayed on the terminal screen?

a. the first line of the file mary

b. the header for the file mary

c. the first 20 lines of the file mary

d. the last 10 lines of the file mary

e. the first 10 lines of the file mary

A

e. the first 10 lines of the file mary

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

The tac command _________.

a. is not a valid Linux command.

b. displays the contents of hidden files .

c. displays the contents of a file in reverse order last word on the line first and first word on the line last.

d. displays the contents of a file in reverse order last line first and first line last.

A

d. displays the contents of a file in reverse order last line first and first line last.

17
Q

How can you specify a text pattern that must be at the beginning of a line of text using a regular expression?

a. Precede the string with a /.

b. Follow the string with a .

c. Precede the string with a $.

d. Precede the string with a ^.

A

d. Precede the string with a ^.

18
Q

Linux has only one root directory per directory tree. True or False?

a. True
b. False

A

a. True

19
Q

Using wildcard metacharacters, how can you indicate a character that is not an a or b or c or d?

a. [^abcd] 	
b. not [a-d]	
c. [!a-d]	
d. !a-d
A

c. [!a-d]

20
Q

A user typed in the command pwd and saw the output: /home/jim/sales/pending. How could that user navigate to the /home/jim directory?

a. cd ..	
b. cd /jim 	
c. cd ../..	
d. cd ./.
A

c. cd ../..