Difficulty: Easy
Correct Answer: 255.0.0.0, 255.255.0.0, 255.255.255.0
Explanation:
Introduction:
Legacy classful IPv4 addressing assigns default masks based on address class. Although modern networks use CIDR, knowing the defaults remains useful for exams and interpreting historical configurations.
Given Data / Assumptions:
Concept / Approach:
Match each class to its default prefix length and derive the dotted-decimal mask. The correct order A, B, C corresponds to /8, /16, /24 respectively.
Step-by-Step Solution:
1) Class A → /8 → 255.0.0.0.2) Class B → /16 → 255.255.0.0.3) Class C → /24 → 255.255.255.0.
Verification / Alternative check:
CIDR generalizes these, but routers and textbooks still reference these defaults for historical context and subnetting examples.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing class defaults with commonly deployed subnetted CIDR masks; the question asks specifically for the default classful masks.
Final Answer:
255.0.0.0, 255.255.0.0, 255.255.255.0
Discussion & Comments