COMPREHENSIVE PRACTICE EXAM 400 QUESTIONS AND ANSWERS
WITH DETAILED RATIONALES EACH | CURRENTLY TESTING AND
FREQUENTLY TESTED QUESTIONS | EXPERT VERIFIED FOR
GUARANTEED PASS | LATEST UPDATE
COURSE DESCRIPTION:
WGU D412 equips students with practical network analytics and troubleshooting
skills essential for modern IT roles. The course emphasizes a structured,
layered diagnostic methodology, primarily following the OSI model to
systematically isolate faults—starting with physical layer checks and
progressing to application-level analysis. Students master critical
command-line tools (ping, tracert, ipconfig, netstat, nslookup) and protocol
analyzers like Wireshark to capture and interpret live traffic. The curriculum
focuses heavily on core network services: diagnosing DHCP failures, resolving
DNS misconfigurations (such as malicious forward lookup zones), and analyzing
IP addressing and subnetting. Lab scenarios simulate real-world outages,
requiring root cause analysis and proper documentation. Additionally, students
learn to utilize performance monitors and telemetry data to baseline network
behavior. Ultimately, the course aims to develop proficient problem-solvers
who can efficiently restore connectivity, ensuring network resilience while
adhering to security standards and disaster recovery best practices in complex
environments.
SECTION 1: OSI MODEL & NETWORKING FUNDAMENTALS (Questions 1 - 75)
QUESTION 1:
Which OSI layer is responsible for organizing how bits are passed over the
physical layer between devices within the same collision domain?
A) Physical Layer
B) Data Link Layer
C) Network Layer
D) Transport Layer
CORRECT ANSWER: B
RATIONALE: The Data Link Layer (Layer 2) organizes bits into frames and
manages how they are passed over the physical layer between devices within
1
,the same collision domain. It provides error detection and correction at the
frame level. The Physical Layer (Layer 1) handles the actual transmission of
raw bits. The Network Layer (Layer 3) handles routing between different
networks, and the Transport Layer (Layer 4) handles end-to-end communication.
QUESTION 2:
At which OSI layer does a router primarily operate?
A) Physical Layer
B) Data Link Layer
C) Network Layer
D) Transport Layer
CORRECT ANSWER: C
RATIONALE: A router operates primarily at the Network Layer (Layer 3) of the
OSI model. Routers use IP addresses to make forwarding decisions and route
packets between different networks. Switches operate at Layer 2 (Data Link),
and hubs/repeaters operate at Layer 1 (Physical).
QUESTION 3:
What is the primary function of the Transport Layer (Layer 4)?
A) Physical addressing and media access control
B) Routing and logical addressing
C) End-to-end communication and data segmentation
D) Data formatting and encryption
CORRECT ANSWER: C
RATIONALE: The Transport Layer (Layer 4) is responsible for end-to-end
communication, data segmentation, flow control, and error recovery. Protocols
such as TCP (connection-oriented) and UDP (connectionless) operate at this
2
,layer. Physical addressing occurs at Layer 2, routing at Layer 3, and data
formatting/presentation at Layer 6.
QUESTION 4:
Which protocol is connection-oriented and provides reliable data delivery?
A) UDP
B) TCP
C) IP
D) ARP
CORRECT ANSWER: B
RATIONALE: TCP (Transmission Control Protocol) is connection-oriented and
provides reliable, ordered, and error-checked delivery of data between
applications. It establishes a connection through a three-way handshake
before data transmission. UDP is connectionless and does not guarantee
delivery. IP is a network layer protocol for addressing and routing. ARP
resolves IP addresses to MAC addresses.
QUESTION 5:
Which OSI layer is responsible for data formatting, encryption, and
compression?
A) Session Layer
B) Presentation Layer
C) Application Layer
D) Transport Layer
CORRECT ANSWER: B
RATIONALE: The Presentation Layer (Layer 6) is responsible for data
formatting, encryption, compression, and translation between different data
3
, formats. It ensures that data sent from the Application Layer of one system
is readable by the Application Layer of another. The Session Layer manages
dialogues, the Application Layer provides services to the user, and the
Transport Layer handles end-to-end communication.
QUESTION 6:
What is a Protocol Data Unit (PDU) called at the Network Layer?
A) Frame
B) Packet
C) Segment
D) Bit
CORRECT ANSWER: B
RATIONALE: At the Network Layer (Layer 3), the PDU is called a Packet. Frames
are at Layer 2 (Data Link), Segments are at Layer 4 (Transport), and Bits are
at Layer 1 (Physical). Each layer encapsulates data with its own header
information.
QUESTION 7:
Which OSI layer is responsible for logical addressing and routing?
A) Physical Layer
B) Data Link Layer
C) Network Layer
D) Transport Layer
CORRECT ANSWER: C
RATIONALE: The Network Layer (Layer 3) is responsible for logical addressing
(IP addresses) and routing packets between different networks. It determines
the best path for data to travel from source to destination. The Data Link
4