A host is configured as 192.168.50.130/25. Which address is the broadcast address for its subnet?
With a /25 prefix, the subnet mask is 255.255.255.128, which splits the 192.168.50.0/24 network into two 128-address blocks. The address 192.168.50.130 falls into the upper block, 192.168.50.128/25, which spans .128 through .255. The broadcast address is the last address in that block, .255, where all seven host bits are set to 1.
Why this answer
A /25 divides the /24 into two blocks: 0–127 and 128–255. In plain language, because the host ends in 130, it belongs to the upper half, which starts at 128 and ends at 255. The last address in that block is the broadcast address, so the broadcast is 192.168.50.255.
This is a classic subnetting pattern because it tests whether you can identify not just the subnet, but also the reserved last address in that subnet.
Exam trap
A frequent exam trap is mistaking the network address or a high usable host address for the broadcast address. Candidates often select 192.168.50.128, confusing it as the broadcast because it is the start of the upper subnet, or 192.168.50.254, assuming it is the broadcast since it is near the subnet's end. The trap lies in not recognizing that the broadcast address is always the highest address in the subnet, which in this case is 192.168.50.255.
Misidentifying these addresses leads to incorrect subnet calculations and can cause network communication failures in real scenarios.
Why the other options are wrong
192.168.50.127 is the broadcast address for the lower /25 subnet (192.168.50.0/25), not the subnet containing 192.168.50.130. Since the host IP is in the upper subnet, this option is incorrect.
192.168.50.128 is the network address of the upper /25 subnet (192.168.50.128/25), not the broadcast address. Network addresses cannot be assigned to hosts or used as broadcast addresses, so this option is incorrect.
192.168.50.254 is a valid usable host address within the upper /25 subnet. It is not the broadcast address, so this option is incorrect.