Difficulty: Medium
Correct Answer: 2
Explanation:
Introduction:
Subnetting questions often hinge on whether you assume modern CIDR practices (which allow using all subnets, including subnet-zero) or legacy rules (which historically reserved the all-zeros and all-ones subnets). This problem asks specifically about a Class C network with a mask value of 192 in the last octet, i.e., a /26, and wants the number of subnets available under the older, more restrictive convention.
Given Data / Assumptions:
Concept / Approach:
With 2 borrowed bits, the total number of theoretical subnets is 2^2 = 4. Under the legacy “no subnet-zero” rule, you must subtract 2 reserved subnets (all-zeros and all-ones), yielding 4 − 2 = 2 usable subnets. Note that hosts per subnet would be 2^6 − 2 = 62 (since 6 host bits remain), but the question is about subnets available, not hosts per subnet.
Step-by-Step Solution:
1) Determine borrowed bits: /26 means 2 bits for subnetting.2) Compute theoretical subnets: 2^2 = 4.3) Apply legacy reservation: 4 − 2 = 2 usable subnets.4) Confirm distinction from hosts per subnet (62) to avoid misinterpretation.
Verification / Alternative check:
Modern practice (allowing all subnets) would yield 4 usable subnets. However, many classic exam items explicitly invoke the old restriction to test historical knowledge.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing “subnets” with “hosts per subnet,” or forgetting whether subnet-zero is permitted in the scenario.
Final Answer:
2
Discussion & Comments