Challenge - 5 Problems
Classful Addressing Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
Identify the Class of an IP Address
Given the IP address 130.25.50.1, which class does it belong to?
Attempts:
2 left
💡 Hint
Look at the first number in the IP address and compare it to the class ranges.
✗ Incorrect
The first octet is 130, which falls between 128 and 191. This range corresponds to Class B addresses.
📋 Factual
intermediate2:00remaining
Number of Hosts in Class C Network
How many usable host addresses are available in a Class C network?
Attempts:
2 left
💡 Hint
Remember to subtract network and broadcast addresses from total hosts.
✗ Incorrect
Class C networks have 8 bits for hosts, so 2^8 = 256 addresses. Subtracting 2 for network and broadcast leaves 254 usable hosts.
🔍 Analysis
advanced2:00remaining
Determine Network Class from Binary
The first octet of an IP address in binary is
01100010. What is the class of this IP address?Attempts:
2 left
💡 Hint
Check the first few bits to identify the class.
✗ Incorrect
Class A addresses start with 0, Class B with 10, Class C with 110. The binary 01100010 starts with 0 and then 1, which is decimal 98. Since 98 is between 128 and 191? No, 98 is between 1 and 126, so Class A. But the binary starts with 0, so Class A.
❓ Comparison
advanced2:00remaining
Compare Network Sizes of Class A and Class B
Which statement correctly compares the number of possible hosts in Class A and Class B networks?
Attempts:
2 left
💡 Hint
Think about how many bits are used for hosts in each class.
✗ Incorrect
Class A uses 24 bits for hosts, Class B uses 16 bits. More host bits mean more hosts.
❓ Reasoning
expert2:00remaining
Identify the Class from IP Range and Explain
An organization has an IP address starting with 192.168.5.10. Which class does this IP belong to and why is it commonly used in private networks?
Attempts:
2 left
💡 Hint
Check the first octet range and recall private IP address ranges.
✗ Incorrect
192.168.x.x addresses are Class C and are part of private IP ranges used inside local networks.