Difficulty: Easy
Correct Answer: 172.16.64.0
Explanation:
Introduction / Context:
Summarization-style masks like /21 require spotting the third-octet block size and then choosing the correct boundary that includes the given host.
Given Data / Assumptions:
Concept / Approach:
For /21, the block size in the third octet is 256 - 248 = 8. Valid third-octet boundaries are 0, 8, 16, ..., 64, 72, etc. We select the boundary less than or equal to the host’s third octet (66).
Step-by-Step Solution:
Verification / Alternative check:
Range check: 64 ≤ 66 ≤ 71 confirms 66.0 lies within the 64.0/21 block.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting that /21 spans multiple Class B /24s; miscounting the 8-value steps in the third octet.
Final Answer:
172.16.64.0
Discussion & Comments