Skip to content
Zurück zu den Lernmaterialien

50 Free CompTIA Network+ Practice Questions (N10-009)

29. Juli 2026~17 min read

Preparing for the CompTIA Network+ certification? These 50 free practice questions cover all five domains of the N10-009 exam.


Domain 1: Networking Concepts (Questions 1–12)

Question 1

Which OSI layer is responsible for establishing, managing, and terminating sessions between applications?

a) Transport (Layer 4)
b) Session (Layer 5)
c) Presentation (Layer 6)
d) Application (Layer 7)

Show Answer

Answer: b) Session (Layer 5)

Explanation: The Session layer establishes, maintains, and terminates sessions between communicating applications. It manages dialog control (half-duplex vs full-duplex) and checkpointing.

Question 2

Which protocol operates at the Transport layer and provides reliable, connection-oriented communication?

a) UDP
b) TCP
c) IP
d) HTTP

Show Answer

Answer: b) TCP

Explanation: TCP (Transmission Control Protocol) provides reliable, connection-oriented communication with error checking, flow control, and acknowledgment. UDP is connectionless and faster but unreliable.

Question 3

What is the default subnet mask for a Class C IPv4 address?

a) 255.0.0.0
b) 255.255.0.0
c) 255.255.255.0
d) 255.255.255.255

Show Answer

Answer: c) 255.255.255.0

Explanation: Class C addresses have default subnet mask 255.255.255.0 (/24). Class A = 255.0.0.0 (/8), Class B = 255.255.0.0 (/16).

Question 4

Which IPv4 address range is reserved for private (RFC 1918) networks?

a) 10.0.0.0/8
b) 192.168.0.0/16
c) 172.16.0.0/12
d) All of the above

Show Answer

Answer: d) All of the above

Explanation: RFC 1918 defines three private IP ranges: 10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16. These addresses are not routable on the public internet.

Question 5

What is the difference between TCP and UDP?

a) TCP is reliable and connection-oriented; UDP is connectionless and faster
b) UDP is reliable; TCP is faster
c) They are identical
d) TCP is used for streaming; UDP is used for web browsing

Show Answer

Answer: a) TCP is reliable and connection-oriented; UDP is connectionless and faster

Explanation: TCP provides reliability through acknowledgments, retransmission, and sequencing. UDP provides faster but unreliable delivery, making it suitable for streaming and real-time applications.

Question 6

Which protocol resolves IP addresses to MAC addresses?

a) DNS
b) ARP
c) DHCP
d) ICMP

Show Answer

Answer: b) ARP

Explanation: ARP (Address Resolution Protocol) resolves IP addresses to MAC addresses on a local network. Reverse ARP (RARP) does the opposite. DNS resolves hostnames to IP addresses.

Question 7

What is the loopback IP address for IPv4?

a) 192.168.1.1
b) 10.0.0.1
c) 127.0.0.1
d) 0.0.0.0

Show Answer

Answer: c) 127.0.0.1

Explanation: 127.0.0.1 is the IPv4 loopback address (localhost). It points back to the local machine. For IPv6, the loopback address is ::1.

Question 8

Which of the following is a valid IPv6 address?

a) 192.168.1.1
b) fe80::1
c) 10.0.0.256
d) 172.16.0.0.1

Show Answer

Answer: b) fe80::1

Explanation: fe80::1 is a valid IPv6 link-local address. IPv6 uses 128-bit hexadecimal notation with colons. Options a is IPv4, c has invalid octet (256), d has too many octets.

Question 9

Which port is used by DNS?

a) 25
b) 53
c) 80
d) 110

Show Answer

Answer: b) 53

Explanation: DNS (Domain Name System) uses port 53 for both TCP and UDP. UDP is used for standard queries; TCP is used for zone transfers and large responses.

Question 10

What is CIDR notation?

a) A method for describing IP addresses and subnet masks compactly (e.g., /24)
b) A routing protocol
c) A type of cable
d) A network device

Show Answer

Answer: a) A method for describing IP addresses and subnet masks compactly (e.g., /24)

Explanation: CIDR (Classless Inter-Domain Routing) notation expresses the subnet mask as the number of network bits (e.g., 192.168.1.0/24 means 255.255.255.0).

Question 11

Which protocol is used for automatic IP address assignment?

a) DNS
b) DHCP
c) ARP
d) ICMP

Show Answer

Answer: b) DHCP

Explanation: DHCP (Dynamic Host Configuration Protocol) automatically assigns IP addresses, subnet masks, default gateways, and DNS servers to devices on a network.

Question 12

What is the purpose of NAT (Network Address Translation)?

a) Translating domain names to IP addresses
b) Translating private IP addresses to public IP addresses
c) Translating MAC addresses to IP addresses
d) Translating IPv4 to IPv6

Show Answer

Answer: b) Translating private IP addresses to public IP addresses

Explanation: NAT allows multiple devices on a private network to share a single public IP address for internet access. It conserves public IPv4 addresses.


Domain 2: Network Implementation (Questions 13–22)

Question 13

Which device operates at Layer 2 of the OSI model and forwards traffic based on MAC addresses?

a) Router
b) Switch
c) Hub
d) Firewall

Show Answer

Answer: b) Switch

Explanation: Switches operate at Layer 2 (Data Link), forwarding frames based on MAC addresses. Routers operate at Layer 3 (IP). Hubs operate at Layer 1 (signal repeating).

Question 14

What does VLAN stand for?

a) Virtual Local Area Network
b) Very Large Area Network
c) Variable Length Area Network
d) Virtual Link Access Network

Show Answer

Answer: a) Virtual Local Area Network

Explanation: A VLAN creates logically separate networks on the same physical switch, isolating traffic and improving security and performance without additional hardware.

Question 15

Which wireless standard operates at 5 GHz and provides speeds up to 1.3 Gbps?

a) 802.11n (WiFi 4)
b) 802.11ac (WiFi 5)
c) 802.11ax (WiFi 6)
d) 802.11b

Show Answer

Answer: b) 802.11ac (WiFi 5)

Explanation: 802.11ac (WiFi 5) operates on 5 GHz only, with speeds up to 1.3 Gbps. WiFi 4 (802.11n) works on both 2.4/5 GHz up to 600 Mbps. WiFi 6 (802.11ax) is faster.

Question 16

Which routing protocol uses a metric based on hop count?

a) OSPF
b) BGP
c) RIP
d) EIGRP

Show Answer

Answer: c) RIP

Explanation: RIP (Routing Information Protocol) uses hop count as its metric (max 15 hops). OSPF uses cost (bandwidth), EIGRP uses a composite metric, BGP uses path attributes.

Question 17

What is the purpose of a default gateway?

a) Providing DNS resolution
b) The router that forwards traffic from a local network to other networks
c) Assigning IP addresses
d) Filtering network traffic

Show Answer

Answer: b) The router that forwards traffic from a local network to other networks

Explanation: The default gateway is the router IP that devices use to send traffic destined for networks outside their local subnet.

Question 18

Which type of cable is most commonly used for Ethernet networks?

a) Coaxial
b) Twisted pair (UTP/STP)
c) Fiber optic
d) Serial

Show Answer

Answer: b) Twisted pair (UTP/STP)

Explanation: Twisted pair copper cable (Cat5e, Cat6, Cat6a) is the most common Ethernet cabling, using RJ45 connectors. Fiber optic is used for long distances and higher bandwidth.

Question 19

What is the maximum cable length for a Cat6 Ethernet cable?

a) 50 meters
b) 100 meters
c) 200 meters
d) 500 meters

Show Answer

Answer: b) 100 meters

Explanation: The maximum length for twisted pair Ethernet (Cat5e, Cat6, Cat6a) is 100 meters (328 feet) before signal degradation requires a repeater or switch.

Question 20

What does PoE (Power over Ethernet) provide?

a) Faster network speeds
b) Electrical power and data over a single Ethernet cable
c) Wireless connectivity
d) Network security

Show Answer

Answer: b) Electrical power and data over a single Ethernet cable

Explanation: PoE delivers power (up to 15.4W for PoE, 30W for PoE+) along with data on Ethernet cables, eliminating the need for separate power cabling for devices like IP cameras, phones, and access points.

Question 21

Which device connects multiple networks and makes forwarding decisions based on IP addresses?

a) Switch
b) Router
c) Bridge
d) Repeater

Show Answer

Answer: b) Router

Explanation: A router connects different networks and forwards packets based on destination IP addresses using routing tables. Switches forward frames within the same network.

Question 22

What is a SOHO (Small Office/Home Office) router?

a) A large enterprise router
b) An all-in-one device combining router, switch, wireless AP, and firewall for small networks
c) A modem
d) A network switch

Show Answer

Answer: b) An all-in-one device combining router, switch, wireless AP, and firewall for small networks

Explanation: A SOHO router integrates multiple functions: router (NAT), switch (ports), wireless access point (WiFi), and firewall in one device for small office/home use.


Domain 3: Network Operations (Questions 23–30)

Question 23

What is the purpose of network monitoring?

a) Increasing network speed
b) Observing network performance, detecting issues, and ensuring availability
c) Installing new devices
d) Managing user accounts

Show Answer

Answer: b) Observing network performance, detecting issues, and ensuring availability

Explanation: Network monitoring continuously observes network infrastructure (bandwidth, device health, error rates) to detect and alert on issues before they impact users.

Question 24

Which protocol is commonly used for network device monitoring (SNMP)?

a) SMTP
b) SNMP
c) SSH
d) FTP

Show Answer

Answer: b) SNMP

Explanation: SNMP (Simple Network Management Protocol) is used to monitor and manage network devices (switches, routers, printers) by collecting metrics and receiving alerts.

Question 25

What is the purpose of network documentation?

a) Making the network faster
b) Recording network topology, configurations, IP schemes, and procedures
c) Monitoring usage
d) Managing costs

Show Answer

Answer: b) Recording network topology, configurations, IP schemes, and procedures

Explanation: Network documentation (diagrams, IP address schemas, device configs, SOPs) is essential for troubleshooting, change management, onboarding, and disaster recovery.

Question 26

What is a logical topology diagram?

a) A physical map of cable routes
b) A diagram showing data flow and network structure (IPs, VLANs, protocols)
c) A device location map
d) A power diagram

Show Answer

Answer: b) A diagram showing data flow and network structure (IPs, VLANs, protocols)

Explanation: A logical topology diagram shows how data flows on the network — IP addressing, VLANs, routing protocols, and subnets. A physical diagram shows cable paths and device locations.

Question 27

What is the purpose of an SLA (Service Level Agreement) in networking?

a) Pricing for network services
b) Defining guaranteed uptime, response times, and performance metrics
c) Legal terms for internet access
d) Security policies

Show Answer

Answer: b) Defining guaranteed uptime, response times, and performance metrics

Explanation: An SLA with an ISP defines guaranteed service levels including uptime percentage, latency, packet loss, and response times for support.

Question 28

What is a disaster recovery plan (DRP) in networking?

a) A plan for daily operations
b) Documented procedures for restoring network operations after a major failure
c) A security policy
d) A monitoring tool

Show Answer

Answer: b) Documented procedures for restoring network operations after a major failure

Explanation: A DRP defines procedures to restore network infrastructure after a disaster (natural disaster, fire, major equipment failure) including backup sites, restoration priorities, and recovery time objectives.

Question 29

What is high availability in networking?

a) The network is always at maximum speed
b) The network is designed to minimize downtime through redundancy and failover
c) The network is available to all users
d) The network has high bandwidth

Show Answer

Answer: b) The network is designed to minimize downtime through redundancy and failover

Explanation: High availability uses redundant components (power supplies, links, devices) and failover mechanisms to ensure network uptime when individual components fail.

Question 30

What is a change management process in network operations?

a) Making changes without documentation
b) A structured approach to planning, approving, implementing, and reviewing network changes
c) A tool for making changes
d) An inventory system

Show Answer

Answer: b) A structured approach to planning, approving, implementing, and reviewing network changes

Explanation: Change management ensures network changes (config updates, hardware replacements, firmware upgrades) are reviewed, approved, tested, and documented to minimize risk.


Domain 4: Network Security (Questions 31–37)

Question 31

Which network security device filters traffic based on rules and can perform stateful inspection?

a) Hub
b) Switch
c) Firewall
d) Router

Show Answer

Answer: c) Firewall

Explanation: A firewall filters network traffic based on security rules. Stateful firewalls track connection state and allow return traffic automatically.

Question 32

What is the difference between a stateful and a stateless firewall?

a) Stateful tracks connection state; stateless filters each packet independently
b) Stateless tracks connections; stateful filters independently
c) There is no difference
d) Stateful is slower but more secure

Show Answer

Answer: a) Stateful tracks connection state; stateless filters each packet independently

Explanation: Stateful firewalls maintain a connection table and allow return traffic automatically. Stateless firewalls (ACLs) examine each packet in isolation without connection context.

Question 33

Which VPN protocol is commonly used for site-to-site VPNs and is built into most routers?

a) SSL
b) IPsec
c) PPTP
d) L2TP

Show Answer

Answer: b) IPsec

Explanation: IPsec (Internet Protocol Security) is a common VPN protocol for site-to-site connections. It provides encryption and authentication at the IP layer.

Question 34

What is an ACL (Access Control List) in networking?

a) A list of user permissions
b) A list of rules that permit or deny traffic on a router or switch
c) A list of IP addresses
d) A security policy document

Show Answer

Answer: b) A list of rules that permit or deny traffic on a router or switch

Explanation: ACLs on routers and switches filter traffic based on source/destination IP addresses, port numbers, and protocols. They're a basic form of stateless firewall.

Question 35

What is network segmentation?

a) Making the network faster
b) Dividing a network into smaller parts to isolate traffic and improve security
c) Connecting multiple networks
d) Replacing old equipment

Show Answer

Answer: b) Dividing a network into smaller parts to isolate traffic and improve security

Explanation: Network segmentation (using VLANs, subnets, firewalls) isolates different network zones (guest vs corporate, DMZ vs internal) to contain security breaches and control access.

Question 36

What is a DMZ (Demilitarized Zone) in networking?

a) A secure storage zone
b) A network segment that hosts public-facing services and isolates them from the internal network
c) A monitoring zone
d) A backup zone

Show Answer

Answer: b) A network segment that hosts public-facing services and isolates them from the internal network

Explanation: A DMZ sits between the internet and the internal network, hosting public services (web servers, email servers, DNS) to prevent direct access to internal resources.

Question 37

What type of attack sends fraudulent emails to trick users into revealing credentials?

a) DDoS
b) Phishing
c) Man-in-the-middle
d) Spoofing

Show Answer

Answer: b) Phishing

Explanation: Phishing uses deceptive emails (appearing to be from trusted sources) to trick recipients into revealing credentials or clicking malicious links. It's a social engineering attack.


Domain 5: Network Troubleshooting (Questions 38–50)

Question 38

What is the first step in the CompTIA Network+ troubleshooting methodology?

a) Establish a plan of action
b) Identify the problem
c) Test the theory
d) Document findings

Show Answer

Answer: b) Identify the problem

Explanation: The 7-step troubleshooting process: 1) Identify the problem, 2) Establish a theory of probable cause, 3) Test the theory, 4) Establish a plan of action, 5) Implement the solution, 6) Verify functionality, 7) Document findings.

Question 39

Which command tests network connectivity by sending ICMP echo requests?

a) nslookup
b) ping
c) tracert
d) netstat

Show Answer

Answer: b) ping

Explanation: ping sends ICMP Echo Request packets to a target IP/hostname and waits for Echo Reply, measuring round-trip time and packet loss.

Question 40

Which command traces the path packets take to a destination?

a) ping
b) tracert (or traceroute)
c) nslookup
d) ipconfig

Show Answer

Answer: b) tracert (or traceroute)

Explanation: tracert (Windows) or traceroute (Linux/macOS) shows each hop (router) along the path to a destination, including IP addresses and round-trip times.

Question 41

Which command displays the IP configuration of a Windows machine?

a) ifconfig
b) ipconfig
c) netstat
d) nslookup

Show Answer

Answer: b) ipconfig

Explanation: ipconfig (Windows) displays IP address, subnet mask, default gateway, and DNS servers. Linux/macOS uses ifconfig or ip addr.

Question 42

Which command shows active network connections and listening ports?

a) ipconfig
b) ping
c) netstat
d) tracert

Show Answer

Answer: c) netstat

Explanation: netstat displays active TCP/UDP connections, listening ports, routing tables, and network statistics. Useful for identifying suspicious connections.

Question 43

Which tool is used to query DNS records?

a) ping
b) nslookup (or dig)
c) netstat
d) pathping

Show Answer

Answer: b) nslookup (or dig)

Explanation: nslookup and dig are DNS troubleshooting tools that query DNS servers for record types (A, AAAA, MX, CNAME, NS, etc.).

Question 44

What does a "Request timed out" ping response indicate?

a) The destination is definitely down
b) The destination did not respond within the timeout period (could be down, blocked by firewall, or network issue)
c) The destination is working normally
d) The DNS is broken

Show Answer

Answer: b) The destination did not respond within the timeout period (could be down, blocked by firewall, or network issue)

Explanation: Request timed out means the source didn't receive an ICMP Echo Reply within the timeout period. This could be because the host is down, a firewall is blocking ICMP, or there's a network problem.

Question 45

Which tool captures and analyzes network packets?

a) Wireshark
b) nmap
c) netstat
d) tracert

Show Answer

Answer: a) Wireshark

Explanation: Wireshark is a packet analyzer that captures and inspects network traffic in detail, showing protocol headers, payloads, and conversations.

Question 46

What does the APIPA address 169.254.x.x indicate?

a) The device has a valid IP from DHCP
b) The device couldn't reach a DHCP server and assigned itself a link-local address
c) The device is using a static IP
d) The network is working perfectly

Show Answer

Answer: b) The device couldn't reach a DHCP server and assigned itself a link-local address

Explanation: APIPA (Automatic Private IP Addressing) assigns 169.254.x.x when DHCP fails. It allows local communication but not internet access.

Question 47

Which tool scans for open ports on a network device?

a) Wireshark
b) nmap
c) ping
d) netstat

Show Answer

Answer: b) nmap

Explanation: nmap (Network Mapper) scans hosts and ports to discover open ports, running services, and operating systems. It's used for security assessment and network discovery.

Question 48

What is the most likely cause of intermittent network connectivity?

a) DNS configuration error
b) Signal interference, bad cable, failing hardware, or overloaded network
c) Wrong IP address
d) Incorrect gateway

Show Answer

Answer: b) Signal interference, bad cable, failing hardware, or overloaded network

Explanation: Intermittent connectivity is often caused by physical issues (bad cable, loose connector, interference), failing hardware (NIC, switch port), or bandwidth saturation.

Question 49

What does a "Destination host unreachable" error mean?

a) The host exists but is busy
b) The local router has no route to the destination network
c) The destination is too far away
d) The DNS is not resolving

Show Answer

Answer: b) The local router has no route to the destination network

Explanation: "Destination host unreachable" means the local router doesn't have a route to the destination network in its routing table. This is different from "Request timed out."

Question 50

What is the correct order of the OSI model from Layer 7 to Layer 1?

a) Physical, Data Link, Network, Transport, Session, Presentation, Application
b) Application, Presentation, Session, Transport, Network, Data Link, Physical
c) Application, Transport, Network, Data Link, Physical, Session, Presentation
d) Network, Transport, Session, Presentation, Application, Data Link, Physical

Show Answer

Answer: b) Application, Presentation, Session, Transport, Network, Data Link, Physical

Explanation: The OSI model layers from top to bottom: Application (7), Presentation (6), Session (5), Transport (4), Network (3), Data Link (2), Physical (1). Mnemonic: "All People Seem To Need Data Processing."


How Did You Score?

  • 0–25 correct: Review the CompTIA Network+ Exam Guide.
  • 26–40 correct: On track. Practice with network tools.
  • 41–50 correct: Ready for the exam!

Access all Network+ practice questions →


Related Articles

Bereit, dein Wissen zu testen?

Probiere unsere Übungsprüfungen mit Hunderten von realistischen Fragen aus.

Üben starten →

This site uses essential cookies for Stripe payments. No tracking cookies.