- A
The 10.10.0.0/16 route
Why wrong: The /16 matches, but it is less specific than the /24.
- B
The default route
Why wrong: The default route is used only when no more specific route matches.
- C
The 10.10.20.0/24 route
Correct. The /24 route is chosen.
- D
The router load-balances across all matching routes
Why wrong: Routers do not load-balance across unrelated prefix lengths like this.
CCNA IP Routing Practice Question
This 200-301 practice question tests your understanding of ip routing. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. A key principle to apply: routers use the longest prefix match rule to select the most specific route for a given destination IP address.. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A router has routes for 10.10.0.0/16, 10.10.20.0/24, and a default route. Which route is used for destination 10.10.20.55?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
The 10.10.20.0/24 route
The destination matches multiple routes, but the /24 is the most specific match and wins by longest prefix match.
Key principle: Routers use the longest prefix match rule to select the most specific route for a given destination IP address.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
The 10.10.0.0/16 route
Why it's wrong here
The /16 matches, but it is less specific than the /24.
When this WOULD be correct
In a different scenario where the 10.10.20.0/24 route is removed from the routing table, the 10.10.0.0/16 route would then be the only available route for the destination 10.10.20.55, making it the correct answer.
- ✗
The default route
Why it's wrong here
The default route is used only when no more specific route matches.
When this WOULD be correct
If the question stated that the router only had a default route configured and no other specific routes for the 10.10.20.0/24 subnet, then the default route would be the only option available for reaching 10.10.20.55.
- ✓
The 10.10.20.0/24 route
Why this is correct
Correct. The /24 route is chosen.
Related concept
Routers use the longest prefix match rule to select the most specific route for a given destination IP address.
- ✗
The router load-balances across all matching routes
Why it's wrong here
Routers do not load-balance across unrelated prefix lengths like this.
When this WOULD be correct
In a scenario where the router is configured with multiple equal-cost paths to the same destination, such as 10.10.20.0/24 and another route with the same prefix length, a question could ask which routes would be used for load balancing. In that case, the answer would be that the router load-balances across all matching routes.
Option-by-option analysis
Why each answer is right or wrong
Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The 200-301 exam frequently reuses these exact scenarios with slightly different constraints.
✓The 10.10.20.0/24 routeCorrect answer▾
Why this is correct
Correct. The /24 route is chosen.
✗The 10.10.0.0/16 routeWrong answer — click to see why▾
Why this is wrong here
The 10.10.0.0/16 route is broader and encompasses the 10.10.20.0/24 subnet, but it is not the most specific match for the destination 10.10.20.55, which falls under the more specific 10.10.20.0/24 route.
★ When this WOULD be the correct answer
In a different scenario where the 10.10.20.0/24 route is removed from the routing table, the 10.10.0.0/16 route would then be the only available route for the destination 10.10.20.55, making it the correct answer.
Why candidates choose this
Candidates may be tempted to choose this option because they recognize that the broader subnet covers the destination, leading them to mistakenly believe it is the best match.
✗The default routeWrong answer — click to see why▾
Why this is wrong here
The default route is used only when no more specific routes match the destination address. Since 10.10.20.55 falls within the 10.10.20.0/24 subnet, the default route is not applicable in this case.
★ When this WOULD be the correct answer
If the question stated that the router only had a default route configured and no other specific routes for the 10.10.20.0/24 subnet, then the default route would be the only option available for reaching 10.10.20.55.
Why candidates choose this
Candidates may choose the default route due to a misunderstanding of routing priority, thinking that the default route serves as a catch-all for any unlisted addresses, without considering the specificity of the existing routes.
✗The router load-balances across all matching routesWrong answer — click to see why▾
Why this is wrong here
This option is wrong because routers do not load-balance across routes unless configured to do so with specific routing protocols or settings. In this case, the most specific route, 10.10.20.0/24, is the only applicable choice for the destination 10.10.20.55.
★ When this WOULD be the correct answer
In a scenario where the router is configured with multiple equal-cost paths to the same destination, such as 10.10.20.0/24 and another route with the same prefix length, a question could ask which routes would be used for load balancing. In that case, the answer would be that the router load-balances across all matching routes.
Why candidates choose this
Candidates may choose this option due to a misunderstanding of routing behavior, believing that routers automatically distribute traffic across all available routes rather than selecting the most specific match.
Analysis generated from the official 200-301blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”
Common exam traps
Common exam trap: answer the scenario, not the keyword
Remember that routers use the longest prefix match rule, not the most general or default route, when multiple routes are available.
Detailed technical explanation
How to think about this question
In Cisco routing, the fundamental principle for route selection is the longest prefix match. This means the router examines all routes that match the destination IP address and selects the one with the most bits specified in the subnet mask. For example, a /24 prefix (255.255.255.0) specifies 24 bits of the address, making it more specific than a /16 prefix (255.255.0.0), which specifies only 16 bits. In the given scenario, the destination IP 10.10.20.55 matches both 10.10.0.0/16 and 10.10.20.0/24 routes. Since 10.10.20.0/24 covers a smaller, more specific subnet, the router chooses this route over the broader /16. The default route, which matches all addresses, is only used if no other route matches. Cisco routers do not load-balance across routes with different prefix lengths because that would violate the longest prefix match principle. Load balancing is possible only among routes with identical prefix lengths and administrative distances. This behavior ensures predictable and efficient routing. Practically, network engineers must design subnetting schemes carefully to avoid unintended route overlaps and ensure traffic flows through the intended paths. Understanding how prefix lengths affect route selection is essential for troubleshooting routing issues and optimizing network performance.
KKey Concepts to Remember
- Routers use the longest prefix match rule to select the most specific route for a given destination IP address.
- A /24 subnet mask (255.255.255.0) is more specific than a /16 subnet mask (255.255.0.0) because it matches more bits of the IP address.
- When multiple routes match a destination, the router chooses the route with the longest subnet mask, not the default route.
- Default routes (0.0.0.0/0) are only used when no other more specific route exists in the routing table.
- Routing decisions in Cisco routers prioritize prefix length before considering administrative distance or metrics.
- Overlapping routes with different prefix lengths can coexist, but the most specific route always takes precedence.
- Load balancing occurs only among routes with equal prefix length and equal administrative distance, not across different prefix lengths.
- Understanding subnetting and prefix lengths is critical for interpreting routing table entries and predicting routing behavior.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Routers use the longest prefix match rule to select the most specific route for a given destination IP address.
Real-world example
How this comes up in practice
A small business has 20 workstations on the 192.168.1.0/24 network and one public IP from its ISP. The router uses PAT (NAT overload) so all 20 devices share one public address using different source ports. NAT questions test whether you understand the four address terms and which direction each translation applies.
What to study next
Got this wrong? Here's your next step.
Review routers use the longest prefix match rule to select the most specific route for a given destination IP address., then practise related 200-301 questions on the same topic to reinforce the concept.
- →
IP Routing — study guide chapter
Learn the concepts, then practise the questions
- →
IP Routing practice questions
Targeted practice on this topic area only
- →
All 200-301 questions
1,819 questions across all exam domains
- →
CCNA 200-301 v2 study guide
Full concept coverage aligned to exam objectives
- →
200-301 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related 200-301 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Network Infrastructure and Connectivity practice questions
Practise 200-301 questions linked to Network Infrastructure and Connectivity.
Switching and Network Access practice questions
Practise 200-301 questions linked to Switching and Network Access.
IP Routing practice questions
Practise 200-301 questions linked to IP Routing.
Network Services and Security practice questions
Practise 200-301 questions linked to Network Services and Security.
AI and Network Operations practice questions
Practise 200-301 questions linked to AI and Network Operations.
CCNA subnetting practice questions
Practise IPv4 subnetting, CIDR, masks, host ranges and subnet selection.
CCNA OSPF practice questions
Practise OSPF neighbours, router IDs, metrics, areas and routing-table interpretation.
CCNA VLAN practice questions
Practise VLANs, access ports, trunks, allowed VLANs and switching scenarios.
CCNA STP practice questions
Practise spanning tree, root bridge election, port roles and STP troubleshooting.
CCNA EtherChannel practice questions
Practise LACP, PAgP, port-channel behaviour and bundle requirements.
CCNA ACL practice questions
Practise standard and extended ACLs, permit/deny logic and traffic filtering.
CCNA NAT practice questions
Practise static NAT, dynamic NAT, PAT and inside/outside address translation.
Practice this exam
Start a free 200-301 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this 200-301 question test?
IP Routing — This question tests IP Routing — Routers use the longest prefix match rule to select the most specific route for a given destination IP address..
What is the correct answer to this question?
The correct answer is: The 10.10.20.0/24 route — The destination matches multiple routes, but the /24 is the most specific match and wins by longest prefix match.
What should I do if I get this 200-301 question wrong?
Review routers use the longest prefix match rule to select the most specific route for a given destination IP address., then practise related 200-301 questions on the same topic to reinforce the concept.
What is the key concept behind this question?
Routers use the longest prefix match rule to select the most specific route for a given destination IP address.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Last reviewed: May 17, 2026
This 200-301 practice question is part of Courseiva's free Cisco certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the 200-301 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.