Session ID: 149
Mode: objective
Status: in_progress
Score: 0%
Filter: All | Incorrect | Flagged | Unanswered
Current filter: All
Which command can create an archive in the cpio format?
Status: Unanswered
Your Answer:
Options:
Explanation:
The objective’s partial list explicitly includes cpio [1].
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].
Which command creates a new directory?
Status: Unanswered
Your Answer:
Options:
Explanation:
Directories are files that store other files, and creating them is part of basic file management. mkdir is the standard Linux command for this task [1][2].
Which pair of commands is used to compress and decompress files with bzip2 format?
Status: Unanswered
Your Answer:
Options:
Explanation:
The objective's partial list explicitly includes bzip2 and bunzip2 [1].
Which command sequence is most appropriate to copy a directory and all its contents?
Status: Unanswered
Your Answer:
Options:
Explanation:
Copying files and directories is part of this objective. Recursively copying a directory requires cp -r; this is standard Linux command knowledge consistent with the objective [1][2].
Which command is used to copy files or directories?
Status: Unanswered
Your Answer:
Options:
Explanation:
This objective covers basic file management operations such as copying files from one location to another [1].
Which command is commonly used to create or extract tar archives?
Status: Unanswered
Your Answer:
Options:
Explanation:
The partial list of utilities for Objective 103.3 explicitly includes tar [1].
Which command creates a new empty file named notes.txt if it does not already exist?
Status: Unanswered
Your Answer:
Accepted Answer(s):
touch notes.txt
Explanation:
Creating files is part of file management; touch is the standard command for creating an empty file. This is standard Linux knowledge consistent with the objective [1][2].
Which command is a low-level copying utility often used to copy data between devices or create disk images?
Status: Unanswered
Your Answer:
Options:
Explanation:
The partial list of utilities for this objective explicitly includes dd [1].
Which globbing pattern matches all files ending in .txt?
Status: Unanswered
Your Answer:
Options:
Explanation:
File globbing is part of the objective. The pattern *.txt matches filenames ending with .txt; this is standard shell knowledge [1][2].