ASSESSMENT PRACTICE TEST 1 | TARGETED
QUESTIONS & ANSWERS | LPI LINUX
ESSENTIALS EXAM PREP 2026
WGU D281 LINUX FOUNDATIONS OA & PRE-ASSESSMENT PRACTICE TEST 1
TARGETED QUESTIONS & ANSWERS | LPI LINUX ESSENTIALS EXAM PREP 2026
• This comprehensive practice test contains 200 targeted multiple-choice questions
aligned with the LPI Linux Essentials (010-160) certification exam blueprint and
WGU D281 course objectives
• Study this material by reviewing each question carefully, attempting to answer
before checking the correct option, then reading the detailed rationale to reinforce
key Linux concepts and command-line proficiency
QUESTION 1
What is the primary purpose of the Linux kernel?
A) To provide a graphical user interface for end users
B) To manage hardware resources and provide essential services to applications
and users
C) To store all user files and documents
D) To replace the Windows operating system
E) To manage only network connections
CORRECT ANSWER: B) To manage hardware resources and provide
essential services to applications and users
RATIONALE: The Linux kernel is the core of the operating system that manages
hardware resources including CPU, memory, and I/O devices. It acts as an
intermediary between applications and hardware, providing essential services such
as process management, memory management, and device management. The
graphical interface (A) is provided by desktop environments, not the kernel. The
kernel does not store user files (C), it is not designed to replace Windows (D), and it
manages more than just network connections (E).
,QUESTION 2
Which of the following best describes a Linux distribution?
A) A computer that runs Linux
B) The Linux kernel combined with GNU utilities and package management tools
C) A version of the Windows operating system
D) A hardware manufacturer
E) A graphical interface application
CORRECT ANSWER: B) The Linux kernel combined with GNU utilities and
package management tools
RATIONALE: A Linux distribution is a complete operating system bundle that
includes the Linux kernel, GNU utilities (tools and applications), and a package
management system. Popular distributions include Ubuntu, Fedora, Debian, and
Red Hat. Option A describes a computer running Linux, not a distribution. Option C
is incorrect as Linux is not a version of Windows. Options D and E describe
unrelated concepts.
QUESTION 3
What command is used to display the current working directory?
A) ls
B) cd
C) pwd
D) cat
E) mkdir
CORRECT ANSWER: C) pwd
,RATIONALE: The "pwd" command stands for "print working directory" and displays
the full path of the current directory where the user is located in the file system.
The "ls" command lists directory contents (A), "cd" changes directories (B), "cat"
displays file contents (D), and "mkdir" creates directories (E). pwd is the correct
command for displaying the current working directory.
QUESTION 4
Which command would you use to list all files and directories, including
hidden ones, with detailed information?
A) ls -a
B) ls -l
C) ls -la
D) ls -d
E) ls -h
CORRECT ANSWER: C) ls -la
RATIONALE: The "ls -la" command combines two flags: "-l" displays long format
with detailed information (permissions, ownership, size, date), and "-a" shows all
files including hidden ones (those starting with a dot). Option A only shows hidden
files without details, B shows details but hides hidden files, D lists only directory
names, and H displays human-readable sizes. The combination "-la" provides both
requirements.
QUESTION 5
What is the absolute path?
A) A path that starts from any directory
B) A path that always starts from the root directory (/)
C) A path that can only be used in the home directory
, D) A temporary path that changes with each command
E) A path that requires special permissions
CORRECT ANSWER: B) A path that always starts from the root directory (/)
RATIONALE: An absolute path always begins with the forward slash (/) and
specifies the complete path from the root of the file system. For example,
/home/user/documents is an absolute path. Option A describes a relative path.
Options C, D, and E are incorrect definitions of path types. Absolute paths are
consistent and work from any location in the file system.
QUESTION 6
Which command changes the current directory to the user's home directory?
A) cd /
B) cd ..
C) cd ~
D) cd home
E) cd root
CORRECT ANSWER: C) cd ~
RATIONALE: The tilde (~) is a shortcut that represents the user's home directory.
"cd ~" will change to the home directory regardless of the current location. "cd /"
changes to the root directory (A), "cd .." moves to the parent directory (B), "cd
home" would look for a home subdirectory in the current location (D), and "cd root"
would look for a root directory (E). The tilde is the correct shortcut for home.
QUESTION 7
What does the ls -l command display in the first column?
A) File size