Recall & Review
beginner
What is a subnet mask?
A subnet mask is a number that separates the IP address into the network part and the host part. It helps devices know which part of the address identifies the network and which part identifies the device.
Click to reveal answer
beginner
Why do we use subnetting in networks?
Subnetting divides a large network into smaller parts called subnets. This helps organize the network better, improves security, and reduces traffic by limiting broadcast areas.
Click to reveal answer
intermediate
How does a subnet mask look in binary?
A subnet mask is a series of 1s followed by 0s in binary. The 1s cover the network part, and the 0s cover the host part. For example, 255.255.255.0 in decimal is 11111111.11111111.11111111.00000000 in binary.
Click to reveal answer
intermediate
What is the difference between a network address and a broadcast address?
The network address identifies the whole subnet and ends with all host bits set to 0. The broadcast address is used to send messages to all devices in the subnet and ends with all host bits set to 1.
Click to reveal answer
intermediate
How do you calculate the number of hosts in a subnet?
The number of hosts is 2 to the power of the number of host bits minus 2. We subtract 2 because one address is for the network and one for the broadcast. For example, if there are 8 host bits, hosts = 2^8 - 2 = 254.
Click to reveal answer
What does a subnet mask do?
✗ Incorrect
A subnet mask helps devices know which part of the IP address is the network and which part is the host.
Which of these is a valid subnet mask?
✗ Incorrect
Subnet masks have continuous 1s followed by continuous 0s in binary. 255.255.255.0 fits this pattern.
What is the broadcast address used for?
✗ Incorrect
The broadcast address allows sending messages to every device in the subnet at once.
If a subnet mask is 255.255.255.0, how many hosts can the subnet support?
✗ Incorrect
With 8 host bits (32 - 24), the number of hosts is 2^8 - 2 = 254.
Why subtract 2 when calculating the number of hosts in a subnet?
✗ Incorrect
The network address and broadcast address cannot be assigned to hosts, so they are excluded.
Explain what a subnet mask is and how it helps in a network.
Think about how devices know which part of the IP address is the network.
You got /3 concepts.
Describe the purpose of subnetting and how it benefits network management.
Consider why big networks might be hard to manage without subnetting.
You got /4 concepts.