Session Review

Session ID: 150
Mode: random
Status: in_progress
Score: 0%

Filter: All | Incorrect | Flagged | Unanswered

Current filter: Unanswered

Back to Session

Question 1 (104.7-008 / multiple_choice)

According to the FHS, where should temporarily mounted filesystems generally be mounted?

Status: Unanswered

Your Answer:

Options:

Explanation:
The FHS defines /mnt as the mount point for temporarily mounted filesystems [1].

Question 2 (103.8-012 / multiple_choice)

Which command is recommended on systems using vim to open an interactive tutorial?

Status: Unanswered

Your Answer:

Options:

Explanation:
The lesson notes that distributions adopting vim also have the command vimtutor [1].

Question 3 (103.7-025 / command_line)

Enter the grep command that lists only lines starting with the word options from /etc/modprobe.d/alsa-base.conf.

Status: Unanswered

Your Answer:

Accepted Answer(s):
grep '^options' /etc/modprobe.d/alsa-base.conf

Explanation:
The lesson provides this exact command [1].

Question 4 (102.6-002 / multiple_choice)

In virtualization terminology, what are virtual machines called relative to the hypervisor?

Status: Unanswered

Your Answer:

Options:

Explanation:
The virtual machines managed by a hypervisor are called guests [1].

Question 5 (103.2-007 / multiple_choice)

Which command is used to list and count matching adjacent strings in sorted input?

Status: Unanswered

Your Answer:

Options:

Explanation:
uniq is used to list and count matching strings [1].

Question 6 (102.6-001 / multiple_choice)

What is virtualization?

Status: Unanswered

Your Answer:

Options:

Explanation:
Virtualization allows a software platform called a hypervisor to run processes that contain a fully emulated computer system [1].

Question 7 (103.7-016 / multiple_choice)

How can egrep be used to list only .org or .com domains from domains.txt?

Status: Unanswered

Your Answer:

Options:

Explanation:
The guided exercise answer gives egrep ".org$|.com$" domains.txt [1].

Question 8 (104.3-015 / multiple_choice)

What does the fstab option nouser mean?

Status: Unanswered

Your Answer:

Options:

Explanation:
The answers to explorational exercises state that nouser will not allow ordinary users to mount the filesystem [1].

Question 9 (103.3-025 / command_line)

Enter the command that removes the file draft.txt.

Status: Unanswered

Your Answer:

Accepted Answer(s):
rm draft.txt

Explanation:
Deleting files is explicitly mentioned in the lesson introduction [1].

Question 10 (104.7-024 / command_line)

Enter the command that shows where the man page for ifconfig is stored.

Status: Unanswered

Your Answer:

Accepted Answer(s):
whereis -m ifconfig

Explanation:
The lesson shows whereis -m as the option used to locate man pages [1].