Which subnet best supports 15 printers on a LAN?
A network technician is configuring a new subnet on the distribution switch to support 15 network printers. Which of the following available subnets is the best choice to support all 15 printers on the LAN?
Community Votes
100% of anonymous learners picked answer A. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
This question tests the difference between total IP addresses and usable host addresses — a /28 gives 16 total addresses but only 14 usable, which is one short of 15 printers.
For 15 network printers, you need a subnet with at least 15 usable host addresses. The /27 subnet provides 30 usable hosts, making it the only correct choice among /27, /30, /28, and /29.
Choosing C (/28) because 2^4 = 16 appears sufficient; however, this ignores that the network and broadcast addresses are not usable, leaving only 14 hosts.
Community Discussion (5 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
Option A, 10.1.15.0/27, uses a mask of 255.255.255.224. The host bits are 5, so the subnet gives 2^5 = 32 total addresses, of which 32 - 2 = 30 are usable for hosts. Since 30 ≥ 15, this easily supports all 15 printers and leaves room for growth.
Why the Other Options Are Wrong
Option B (/30) provides only 2 usable hosts, and Option D (/29) provides only 6, both obviously insufficient. Option C (/28) provides 2^4 = 16 total addresses, but after subtracting the network address and broadcast address, only 14 are usable — exactly one fewer than required for 15 printers.
Community Comment Notes
The most-upvoted comments correctly explain the /27 calculation, noting that 2^5 = 32 and subtracting 2 gives 30 usable hosts. One comment incorrectly chose /28, saying it gives 16 host addresses, but this is the classic trap: a /28 subnet has 16 IP addresses total, not 16 usable host addresses. The vote distribution (92 for A) confirms the correct consensus.
Official Reference
Exam Strategy
On subnetting questions, always calculate usable addresses using 2^(32 - mask) - 2 and compare the result to the device count. Watch for options like /28 that appear close but fail because the network and broadcast addresses take away two usable addresses.