Challenge - 5 Problems
MAC Address Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📋 Factual
intermediate1:00remaining
What is the length of a MAC address?
A MAC address is a unique identifier assigned to network interfaces. How many bits long is a standard MAC address?
Attempts:
2 left
💡 Hint
Think about the common format shown as six groups of two hexadecimal digits.
✗ Incorrect
A MAC address is 48 bits long, usually displayed as 6 pairs of hexadecimal digits (e.g., 00:1A:2B:3C:4D:5E).
🧠 Conceptual
intermediate1:30remaining
What does the first half of a MAC address represent?
A MAC address is split into two parts. What does the first 24 bits (first half) of a MAC address usually identify?
Attempts:
2 left
💡 Hint
This part is assigned by a central authority to companies making network devices.
✗ Incorrect
The first 24 bits of a MAC address are called the Organizationally Unique Identifier (OUI) and identify the manufacturer.
🔍 Analysis
advanced2:00remaining
Identify the error in this MAC address format
Which of the following MAC addresses is incorrectly formatted?
Attempts:
2 left
💡 Hint
Check if all characters are valid hexadecimal digits (0-9, A-F).
✗ Incorrect
Option C contains '5G' where 'G' is not a valid hexadecimal digit, making it an invalid MAC address.
🚀 Application
advanced1:30remaining
How many unique MAC addresses can exist?
Given that a MAC address is 48 bits long, how many unique MAC addresses are possible?
Attempts:
2 left
💡 Hint
Calculate 2 raised to the power of the number of bits in a MAC address.
✗ Incorrect
Since a MAC address is 48 bits, the total number of unique addresses is 2^48, approximately 281 trillion.
❓ Reasoning
expert2:00remaining
Why can't two devices on the same local network have the same MAC address?
Consider a local network where devices communicate using MAC addresses. What is the main reason two devices cannot share the same MAC address on this network?
Attempts:
2 left
💡 Hint
Think about how devices find each other on the same network segment.
✗ Incorrect
MAC addresses uniquely identify devices on a local network to ensure data is sent to the correct device without confusion or conflict.