- A
14
Why wrong: This is wrong because 14 usable hosts would correspond to a /28, not a /27.
- B
30
This is correct because a /27 has 32 total addresses and 30 usable host addresses.
- C
62
Why wrong: This is wrong because 62 usable hosts would correspond to a /26.
- D
126
Why wrong: This is wrong because 126 usable hosts would correspond to a /25.
CCNA Network Infrastructure and Connectivity Practice Question
This 200-301 practice question tests your understanding of network infrastructure and connectivity. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. A key principle to apply: a subnet mask defines how many bits of an IP address are used for the network versus the host portion, directly affecting subnet size.. 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 subnet uses the mask 255.255.255.224. How many usable host addresses does it provide?
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
30
A mask of 255.255.255.224 corresponds to a /27 prefix. In plain language, that leaves 5 host bits available in the address, which creates 32 total addresses in each subnet. Two of those are reserved: one for the network address and one for the broadcast address. That leaves 30 usable host addresses. This is a classic subnetting question because it tests whether you can move from mask to prefix idea to host count without getting lost. Many learners remember the block size but forget to subtract the network and broadcast entries. The correct answer comes from that full logic chain: /27 means 32 total, and therefore 30 usable.
Key principle: A subnet mask defines how many bits of an IP address are used for the network versus the host portion, directly affecting subnet size.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
14
Why it's wrong here
This is wrong because 14 usable hosts would correspond to a /28, not a /27.
When this WOULD be correct
This option would be correct in a scenario where the question specifies a subnet mask of 255.255.255.240, which allows for 14 usable host addresses. In this case, the calculation would be 2^(4) - 2 = 14.
- ✓
30
Why this is correct
This is correct because a /27 has 32 total addresses and 30 usable host addresses.
Related concept
A subnet mask defines how many bits of an IP address are used for the network versus the host portion, directly affecting subnet size.
- ✗
62
Why it's wrong here
This is wrong because 62 usable hosts would correspond to a /26.
When this WOULD be correct
If the question asked about a subnet mask of 255.255.255.192 instead, which provides 62 usable addresses, then option C would be the correct answer. In this case, the calculation would be 2^(32-26) - 2 = 62 usable addresses.
- ✗
126
Why it's wrong here
This is wrong because 126 usable hosts would correspond to a /25.
When this WOULD be correct
If the question asked how many usable addresses are in a subnet with a mask of 255.255.255.0, which allows for 256 total addresses minus 2 for the network and broadcast addresses, then option D would be correct as it would provide 254 usable addresses.
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.
✓30Correct answer▾
Why this is correct
This is correct because a /27 has 32 total addresses and 30 usable host addresses.
✗14Wrong answer — click to see why▾
Why this is wrong here
This option is wrong because a subnet mask of 255.255.255.224 provides 30 usable host addresses, not 14. The calculation is based on the formula 2^(number of host bits) - 2, where the number of host bits is 5 for this subnet mask.
★ When this WOULD be the correct answer
This option would be correct in a scenario where the question specifies a subnet mask of 255.255.255.240, which allows for 14 usable host addresses. In this case, the calculation would be 2^(4) - 2 = 14.
Why candidates choose this
Candidates may choose this option due to confusion between different subnet masks and their corresponding usable addresses, particularly if they miscalculate or misremember the formula for determining usable hosts.
✗62Wrong answer — click to see why▾
Why this is wrong here
This option is wrong because a subnet mask of 255.255.255.224 allows for 32 total addresses, of which 30 are usable after subtracting the network and broadcast addresses. The calculation is 2^(32-27) - 2 = 30 usable addresses.
★ When this WOULD be the correct answer
If the question asked about a subnet mask of 255.255.255.192 instead, which provides 62 usable addresses, then option C would be the correct answer. In this case, the calculation would be 2^(32-26) - 2 = 62 usable addresses.
Why candidates choose this
Candidates may choose this option due to confusion between subnet sizes and their corresponding usable addresses, especially if they have recently studied larger subnets and misapplied the calculations.
✗126Wrong answer — click to see why▾
Why this is wrong here
Option D is incorrect because a subnet mask of 255.255.255.224 allows for 30 usable host addresses, not 126. The calculation is based on the formula 2^(32 - subnet bits) - 2, where the subnet bits for this mask is 27.
★ When this WOULD be the correct answer
If the question asked how many usable addresses are in a subnet with a mask of 255.255.255.0, which allows for 256 total addresses minus 2 for the network and broadcast addresses, then option D would be correct as it would provide 254 usable addresses.
Why candidates choose this
Candidates may choose this option due to confusion with larger subnet sizes, mistakenly associating the number 126 with a common subnet size, or miscalculating the usable hosts based on a misunderstanding of subnetting principles.
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 to subtract the network and broadcast addresses from the total count of addresses in a subnet.
Detailed technical explanation
How to think about this question
Subnetting is a fundamental concept in networking that divides a larger IP network into smaller, manageable segments called subnets. Each subnet uses a subnet mask to determine which portion of the IP address represents the network and which portion represents hosts. The subnet mask 255.255.255.224 corresponds to a /27 prefix length, meaning the first 27 bits are the network portion and the remaining 5 bits are for host addresses. The number of usable host addresses in a subnet is calculated by taking 2 to the power of the number of host bits and subtracting 2 for the network and broadcast addresses. For a /27 subnet mask, there are 5 host bits, so 2^5 equals 32 total addresses. Subtracting 2 leaves 30 usable host addresses. This calculation is critical for designing networks that require specific numbers of hosts per subnet. A common exam trap is confusing the subnet mask with similar masks like /26 or /28, which have different host counts. For example, a /26 mask provides 62 usable hosts, and a /28 provides 14. Misremembering these values or forgetting to subtract the network and broadcast addresses leads to incorrect answers. Practically, Cisco devices use this logic to allocate IP addresses efficiently and avoid address conflicts within subnets.
KKey Concepts to Remember
- A subnet mask defines how many bits of an IP address are used for the network versus the host portion, directly affecting subnet size.
- The subnet mask 255.255.255.224 corresponds to a /27 prefix, which means 27 bits are network bits and 5 bits are host bits.
- The number of usable host addresses in a subnet is calculated by 2 to the power of host bits minus 2, accounting for network and broadcast addresses.
- A /27 subnet provides 32 total addresses, but only 30 are usable for hosts because the first address is the network ID and the last is the broadcast address.
- Confusing total addresses with usable host addresses is a common mistake that leads to incorrect subnetting answers on the CCNA exam.
- Subnetting requires precise calculation of host bits and understanding reserved addresses to design efficient and functional IP networks.
- Cisco devices rely on correct subnetting to allocate IP addresses and route traffic properly within segmented networks.
- Memorizing common subnet masks and their usable host counts helps avoid errors and speeds up subnetting questions during the exam.
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
A subnet mask defines how many bits of an IP address are used for the network versus the host portion, directly affecting subnet size.
Real-world example
How this comes up in practice
A network engineer segments a warehouse floor into three subnets: 20 scanners, 5 printers, and 2 management hosts. Picking the wrong mask wastes addresses or leaves too few usable hosts. Exam questions test whether you can apply CIDR notation, calculate block size, and identify the correct usable-host range for a given prefix.
What to study next
Got this wrong? Here's your next step.
Review a subnet mask defines how many bits of an IP address are used for the network versus the host portion, directly affecting subnet size., then practise related 200-301 questions on the same topic to reinforce the concept.
- →
Network Infrastructure and Connectivity — study guide chapter
Learn the concepts, then practise the questions
- →
Network Infrastructure and Connectivity 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?
Network Infrastructure and Connectivity — This question tests Network Infrastructure and Connectivity — A subnet mask defines how many bits of an IP address are used for the network versus the host portion, directly affecting subnet size..
What is the correct answer to this question?
The correct answer is: 30 — A mask of 255.255.255.224 corresponds to a /27 prefix. In plain language, that leaves 5 host bits available in the address, which creates 32 total addresses in each subnet. Two of those are reserved: one for the network address and one for the broadcast address. That leaves 30 usable host addresses. This is a classic subnetting question because it tests whether you can move from mask to prefix idea to host count without getting lost. Many learners remember the block size but forget to subtract the network and broadcast entries. The correct answer comes from that full logic chain: /27 means 32 total, and therefore 30 usable.
What should I do if I get this 200-301 question wrong?
Review a subnet mask defines how many bits of an IP address are used for the network versus the host portion, directly affecting subnet size., then practise related 200-301 questions on the same topic to reinforce the concept.
What is the key concept behind this question?
A subnet mask defines how many bits of an IP address are used for the network versus the host portion, directly affecting subnet size.
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.