A host is configured with IP address 192.168.10.130/26. What is the network address of the subnet this host belongs to?
- A. 192.168.10.0
- B. 192.168.10.64
- C. 192.168.10.128 ✓
- D. 192.168.10.192
Correct answer: C. A /26 mask (255.255.255.192) creates subnets in blocks of 64, so 192.168.10.130 falls in the 192.168.10.128–191 range with a network address of 192.168.10.128.
A user reports they can reach websites by IP address but not by domain name. Which service is the most likely cause?
- A. DHCP
- B. DNS ✓
- C. NAT
- D. ARP
Correct answer: B. Being able to reach sites by IP but not by name indicates name resolution is failing, which is the job of DNS.
On a Cisco switch, you want an access port to immediately transition to forwarding for end devices while still protecting against accidental loops from another switch. Which combination is best practice?
- A. PortFast with BPDU Guard ✓
- B. Root Guard with UDLD
- C. PortFast with Root Guard
- D. BPDU Filter with Loop Guard
Correct answer: A. PortFast skips STP listening/learning for fast access-port convergence, and BPDU Guard err-disables the port if a switch (BPDU) is connected, preventing loops.
Which statement correctly describes the difference between TCP and UDP?
- A. TCP is connectionless and UDP is connection-oriented
- B. TCP provides guaranteed, ordered delivery with acknowledgments while UDP does not ✓
- C. UDP guarantees delivery but TCP does not
- D. TCP has lower overhead and latency than UDP
Correct answer: B. TCP is connection-oriented and provides reliable, ordered delivery via acknowledgments and retransmission, whereas UDP is connectionless with no delivery guarantees.
A VLAN 20 exists on two switches connected by a single link. Users in VLAN 20 on switch A cannot reach VLAN 20 users on switch B, though same-switch traffic works. What is the most likely issue?
- A. The inter-switch link is an access port instead of a trunk carrying VLAN 20 ✓
- B. VLAN 20 needs a separate default gateway on each switch
- C. Spanning tree is disabled on VLAN 20
- D. The hosts are using different subnet masks
Correct answer: A. Carrying multiple VLANs between switches requires a trunk link; if the interconnect is an access port, VLAN 20 tagged traffic won't pass between switches.
You run 'traceroute' to a remote host and see the first several hops respond, then all remaining hops show only asterisks (* * *) but the destination is actually reachable via other tests. What is the most common benign explanation?
- A. The destination host is powered off
- B. A device along the path is filtering/rate-limiting ICMP or the returning TTL-exceeded messages ✓
- C. The local DNS server is down
- D. The route has a loop causing infinite hops
Correct answer: B. Asterisks commonly appear when intermediate devices are configured to not respond to or rate-limit the ICMP/UDP probes or TTL-exceeded replies, even though traffic still forwards normally.
Which of the following is a private IPv4 address range as defined by RFC 1918?
- A. 169.254.0.0/16
- B. 172.16.0.0/12 ✓
- C. 192.0.2.0/24
- D. 198.51.100.0/24
Correct answer: B. 172.16.0.0/12 (172.16.0.0–172.31.255.255) is one of the three RFC 1918 private ranges; 169.254.0.0/16 is link-local and the others are documentation ranges.
Two devices on the same subnet cannot ping each other, but each can ping its own IP. Pinging the peer's IP populates the ARP table with an 'incomplete' entry. What does this most likely indicate?
- A. A DNS misconfiguration
- B. A Layer 2 connectivity problem (e.g., wrong VLAN, bad cable, or filtering) preventing ARP replies ✓
- C. The default gateway is unreachable
- D. A duplicate IP address on the subnet
Correct answer: B. An incomplete ARP entry means the ARP request went out but no reply returned, pointing to a Layer 2 reachability problem such as a VLAN mismatch, cabling, or port filtering.
In OSPF, what is the primary purpose of an area (such as area 0)?
- A. To encrypt routing updates between neighbors
- B. To limit the scope of link-state flooding and SPF recalculation for scalability ✓
- C. To assign administrative distance to routes
- D. To perform NAT between routing domains
Correct answer: B. OSPF areas segment the topology so link-state advertisements are flooded and SPF is recalculated within an area, improving scalability and reducing overhead.
A client boots up and receives an IP in the 169.254.x.x range with a 255.255.0.0 mask. What has most likely happened?
- A. It was assigned a valid public IP by the ISP
- B. It failed to reach a DHCP server and self-assigned an APIPA/link-local address ✓
- C. It received a static IP from the administrator
- D. Its subnet mask was misconfigured manually
Correct answer: B. A 169.254.x.x address is APIPA (link-local), automatically self-assigned when a DHCP client cannot obtain a lease from a DHCP server.