1. You are creating a new Azure Virtual Network in the East US region. You need to assign an address space that accommodates at least 500 hosts across 4 subnets, while keeping the address space as small as possible. Which address space should you assign to the VNet?
- A. 10.0.0.0/24
- B. 10.0.0.0/23✓ Correct
- C. 10.0.0.0/22
- D. 10.0.0.0/16
Explanation
A /23 provides 512 addresses (510 usable hosts), which is the smallest block that can accommodate 500+ hosts across 4 subnets. Each subnet would have approximately 128 addresses, and Azure reserves 5 addresses per subnet, leaving enough room. A /24 provides only 256 addresses (251 usable after Azure reservations per subnet), which is insufficient for 500 hosts. A /22 provides 1024 addresses — sufficient but larger than necessary, violating the 'as small as possible' requirement. A /16 provides 65,536 addresses, which is vastly oversized for this requirement.