WGU D281 LINUX FOUNDATIONS EXAM
2026/2027 | IT | LINUX | 100 VERIFIED Q&A |
DETAILED RATIONALES | NGN-ALIGNED |
PASS GUARANTEED – A+ GRADED
SECTION 1: LINUX FUNDAMENTALS AND ARCHITECTURE - Questions 1-15
Q1: Linux Kernel
The student is reviewing Linux architecture. What is the primary function of the Linux kernel?
A. To provide a graphical user interface
B. To manage system resources and hardware communication
C. To run web browsers
D. To store user files
Correct Answer: B
Rationale: The kernel is the core of the Linux operating system. It manages memory, processes,
device drivers, and system calls between hardware and software. [100% CORRECT]
Q2: Linux Distributions
The student is reviewing distributions. Which of the following is a Linux distribution?
A. Windows 11
B. macOS Sonoma
C. Ubuntu
D. Android
Correct Answer: C
Rationale: Ubuntu is a popular Linux distribution based on Debian. It includes the Linux kernel, GNU
utilities, and package management. [100% CORRECT]
Q3: Shell
The student is reviewing shells. What is a shell in Linux?
A. A hardware component
B. A command-line interpreter between the user and the kernel
C. A type of file system
D. A network protocol
Correct Answer: B
Rationale: The shell interprets user commands and passes them to the kernel for execution.
Common shells include Bash, Zsh, and Ksh. [100% CORRECT]
,2
Q4: Bash Shell
The student is reviewing Bash. What does Bash stand for?
A. Basic Advanced Shell
B. Bourne Again Shell
C. Binary Access Shell
D. Boot Automated Shell
Correct Answer: B
Rationale: Bash (Bourne Again Shell) is the default shell on most Linux distributions and an enhanced
version of the original Bourne shell (sh). [100% CORRECT]
Q5: File System Hierarchy
The student is reviewing file systems. What is the root directory in Linux?
A. /home
B. /root
C. /
D. /etc
Correct Answer: C
Rationale: The root directory (/) is the top-level directory in the Linux file system hierarchy. All other
directories branch from it. [100% CORRECT]
Q6: /etc Directory
The student is reviewing directories. What is stored in the /etc directory?
A. User home directories
B. System configuration files
C. Temporary files
D. Device files
Correct Answer: B
Rationale: The /etc directory contains system-wide configuration files, such as /etc/passwd,
/etc/fstab, and /etc/hosts. [100% CORRECT]
Q7: /home Directory
The student is reviewing directories. What is stored in the /home directory?
A. System binaries
B. User home directories
C. Log files
D. Kernel modules
Correct Answer: B
Rationale: The /home directory contains user home directories, such as /home/john and
/home/mary. [100% CORRECT]
, 3
Q8: /var Directory
The student is reviewing directories. What is stored in the /var directory?
A. Variable data such as logs, spools, and caches
B. Static binaries
C. User documents
D. Configuration files
Correct Answer: A
Rationale: /var contains variable data that changes during system operation, including logs
(/var/log), mail spools, and print queues. [100% CORRECT]
Q9: /tmp Directory
The student is reviewing directories. What is the purpose of the /tmp directory?
A. Permanent file storage
B. Temporary file storage
C. System configuration
D. User home directories
Correct Answer: B
Rationale: /tmp is used for temporary files. Files may be deleted automatically on reboot or after a
set period. [100% CORRECT]
Q10: /dev Directory
The student is reviewing directories. What is stored in the /dev directory?
A. Device files
B. User data
C. Log files
D. Configuration files
Correct Answer: A
Rationale: /dev contains device files that represent hardware devices, such as /dev/sda (disk),
/dev/tty (terminal), and /dev/null. [100% CORRECT]
Q11: /proc Directory
The student is reviewing directories. What is the /proc directory?
A. A virtual file system providing process and kernel information
B. A physical directory on disk
C. A user data directory
D. A configuration directory
Correct Answer: A
Rationale: /proc is a virtual file system that provides real-time information about processes and
kernel parameters. [100% CORRECT]