Difficulty: Easy
Correct Answer: 172.16.112.0
Explanation:
Introduction / Context:/25 subnets split a /24 into two halves. To find the network address, determine which half the host belongs to by looking at the most significant bit of the last octet under the /25 mask.
Given Data / Assumptions:
Concept / Approach:/25 gives two blocks in the fourth octet: 0–127 and 128–255. Since the host's fourth octet is 1, it must be in the 0–127 block, making the network address .0.
Step-by-Step Solution:
Block size = 128 addresses.Host 172.16.112.1 lies in 172.16.112.0–172.16.112.127.Network address = 172.16.112.0; Broadcast = 172.16.112.127.Verification / Alternative check:Compute: 1 - (1 mod 128) = 0; confirms network base is .0.
Why Other Options Are Wrong:
Common Pitfalls:Confusing /24 with /25; failing to realize /25 splits the 4th octet in half.
Final Answer:172.16.112.0
Discussion & Comments