Answering a CCNA subnetting question in under 60 seconds
CCNA subnetting questions appear on nearly every exam attempt. Candidates who freeze on these questions waste precious time. The difference between passing and failing often comes down to speed and accuracy on subnetting. This guide shows you the exact workflow to answer any subnetting question in 60 seconds or less.
Understand what the question is really asking
Before you calculate anything, read the question twice. CCNA subnetting questions typically ask for one of five things: the network address, the broadcast address, the number of usable hosts, the first usable IP, or the last usable IP. Misreading the question costs more test-takers points than math errors. Identify the prefix length (slash notation) or subnet mask given in the question and note whether you are working with IPv4 or IPv6.
The 60-second method: block size and binary
The fastest approach combines block size calculation with minimal binary conversion. Here is the workflow:
- →Identify the host bits. Subtract the prefix length from 32 (IPv4). For example, a /28 has 32 - 28 = 4 host bits.
- →Calculate block size. Raise 2 to the power of the number of host bits. A /28 has 2^4 = 16 addresses per block.
- →Find the network containing your IP. Divide the last octet (or relevant octet) by the block size and round down. Multiply the result by block size to find the network address.
- →Calculate key addresses. Network address is your result from step 3. Broadcast is network address plus block size minus 1. First usable is network plus 1. Last usable is broadcast minus 1.
Worked example: 192.168.10.130/28
Let us apply the method to a real question.
Given: 192.168.10.130/28
Find: Network address, broadcast address, first and last usable IP
Step 1: Host bits = 32 - 28 = 4
Step 2: Block size = 2^4 = 16
Step 3: Last octet is 130. Divide by block size: 130 / 16 = 8.125
Round down: 8. Multiply by block size: 8 x 16 = 128
Step 4: Network address = 192.168.10.128
Broadcast = 128 + 16 - 1 = 143 -> 192.168.10.143
First usable = 128 + 1 = 192.168.10.129
Last usable = 143 - 1 = 192.168.10.142This entire calculation takes 45 seconds once you practice it three or four times. The block size method eliminates the need to convert the entire subnet mask to binary for every question.
Common shortcuts for exam day
- →Memorize block sizes for /25 through /30. These appear most often: /25 (128), /26 (64), /27 (32), /28 (16), /29 (8), /30 (4).
- →For /31 and /32, remember the special cases. A /31 is point-to-point with no broadcast. A /32 is a single host.
- →Use the subnet mask shortcut. If you see 255.255.255.240, recognize that 240 = 256 - 16, so block size is 16.
- →Double-check by counting. If your block size is 16 and your network is 192.168.10.128, the next network is 144. If your answer falls outside this range, recalculate.
Speed comes from practice, not memorization. Work through 20 subnetting questions using this method, timing yourself. By question 15, you will consistently hit the 60-second mark. The block size method is faster and less error-prone than full binary conversion for most questions.