- A
192.168.0.0/16
Why wrong: This is wrong because the /16 is less specific than the matching /24.
- B
192.168.50.0/24
This is correct because it is the more specific route for the destination.
- C
The default route
Why wrong: This is wrong because a specific matching route exists.
- D
Both routes equally
Why wrong: This is wrong because the more specific route is preferred.
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: cisco 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 to 192.168.0.0/16 and 192.168.50.0/24. Which route is used for traffic to 192.168.50.99?
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
192.168.50.0/24
The 192.168.50.0/24 route is used because it is more specific. In practical terms, even though the /16 also matches, the router always prefers the route that describes the destination more narrowly. Since 192.168.50.99 falls inside the /24, longest-prefix match chooses that entry. This is a basic but essential routing rule. The broader /16 still matters for other destinations in 192.168.0.0/16, but not for this one.
Key principle: Cisco 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.
- ✗
192.168.0.0/16
Why it's wrong here
This is wrong because the /16 is less specific than the matching /24.
When this WOULD be correct
In a different scenario where the router has only the route 192.168.0.0/16 and no more specific routes for 192.168.50.0/24, traffic to 192.168.50.99 would use the 192.168.0.0/16 route, making this option correct.
- ✓
192.168.50.0/24
Why this is correct
This is correct because it is the more specific route for the destination.
Related concept
Cisco routers use the longest prefix match rule to select the most specific route for a given destination IP address.
- ✗
The default route
Why it's wrong here
This is wrong because a specific matching route exists.
When this WOULD be correct
In a scenario where the router only has a default route configured and no specific routes for the 192.168.50.0/24 network, a question asking which route would be used for traffic to 192.168.50.99 would correctly identify the default route as the answer.
- ✗
Both routes equally
Why it's wrong here
This is wrong because the more specific route is preferred.
When this WOULD be correct
In a different scenario, if the question stated that both routes had equal administrative distances and were configured in a way that allowed for load balancing, then both routes could be used simultaneously for traffic to 192.168.50.99, making this option correct.
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.
✓192.168.50.0/24Correct answer▾
Why this is correct
This is correct because it is the more specific route for the destination.
✗192.168.0.0/16Wrong answer — click to see why▾
Why this is wrong here
The route 192.168.0.0/16 is less specific (larger subnet) than the matching /24 route. In longest prefix match routing, the more specific route (192.168.50.0/24) is always preferred for the destination 192.168.50.99.
★ When this WOULD be the correct answer
In a different scenario where the router has only the route 192.168.0.0/16 and no more specific routes for 192.168.50.0/24, traffic to 192.168.50.99 would use the 192.168.0.0/16 route, making this option correct.
Why candidates choose this
Students may think that because 192.168.50.99 falls within the 192.168.0.0/16 range, this route would be used. However, they overlook the principle of longest prefix match, which prioritizes the route with the longer subnet mask.
✗The default routeWrong answer — click to see why▾
Why this is wrong here
A default route (0.0.0.0/0) is only used when no more specific route matches the destination. Since both 192.168.0.0/16 and 192.168.50.0/24 match 192.168.50.99, the default route is not considered.
★ When this WOULD be the correct answer
In a scenario where the router only has a default route configured and no specific routes for the 192.168.50.0/24 network, a question asking which route would be used for traffic to 192.168.50.99 would correctly identify the default route as the answer.
Why candidates choose this
Students might think that if a default route exists, it could be used as a catch-all. However, the default route has the lowest priority and is only used when no other matching route exists.
✗Both routes equallyWrong answer — click to see why▾
Why this is wrong here
Routers do not load balance between routes of different prefix lengths for the same destination. The longest prefix match rule selects a single best route. Both routes are not used equally; the /24 route is chosen.
★ When this WOULD be the correct answer
In a different scenario, if the question stated that both routes had equal administrative distances and were configured in a way that allowed for load balancing, then both routes could be used simultaneously for traffic to 192.168.50.99, making this option correct.
Why candidates choose this
Students may confuse this with equal-cost multipath (ECMP) where multiple routes with the same prefix length and metric are used. Here, the prefix lengths differ, so ECMP does not apply.
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 prefer the most specific route, not the broadest. Always look for the longest prefix match.
Detailed technical explanation
How to think about this question
Routing decisions in Cisco devices rely on the principle of longest prefix match, where the router selects the route with the most specific subnet mask that matches the destination IP address. This means that among multiple routes that cover the destination IP, the one with the smallest subnet (largest mask length) is preferred. This behavior ensures traffic is forwarded along the most precise path available in the routing table. In this scenario, the router has two routes: 192.168.0.0/16 and 192.168.50.0/24. Both routes include the destination IP 192.168.50.99, but the /24 route is more specific because it covers a smaller range of IP addresses. Cisco routers use the longest prefix match rule to choose 192.168.50.0/24 over 192.168.0.0/16, ensuring traffic is routed optimally. A common exam trap is assuming that the broader route (192.168.0.0/16) would be used simply because it appears first or is more general. However, Cisco routing always prefers the most specific route. Practically, this means that even if a less specific route exists, it will be ignored for matching destinations if a more specific route is present. Understanding this behavior is critical for subnetting and routing questions on the CCNA exam.
KKey Concepts to Remember
- Cisco routers use the longest prefix match rule to select the most specific route for a given destination IP address.
- A route with a smaller subnet mask (larger prefix length) is preferred over a broader route when both match the destination.
- Routing tables can contain overlapping routes, but the router always forwards packets based on the most specific matching entry.
- Default routes are only used when no specific or more specific routes exist for the destination IP address.
- The presence of multiple matching routes does not cause load balancing unless equal-cost multipath routing is configured.
- Subnetting determines the specificity of routes, directly impacting which route a router selects for forwarding traffic.
- Understanding longest prefix match is essential for interpreting routing behavior and troubleshooting IP connectivity issues.
- Cisco routing decisions prioritize prefix length over administrative distance or metric when choosing between routes in the same routing table.
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
Cisco 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 cisco 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 — Cisco 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: 192.168.50.0/24 — The 192.168.50.0/24 route is used because it is more specific. In practical terms, even though the /16 also matches, the router always prefers the route that describes the destination more narrowly. Since 192.168.50.99 falls inside the /24, longest-prefix match chooses that entry. This is a basic but essential routing rule. The broader /16 still matters for other destinations in 192.168.0.0/16, but not for this one.
What should I do if I get this 200-301 question wrong?
Review cisco 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?
Cisco 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.