Difficulty: Easy
Correct Answer: 1000101100111111
Explanation:
Introduction / Context:
Because each hex digit represents exactly four binary bits, converting multi-digit hexadecimal to binary is fast and lossless. This is a routine operation when reading register dumps, addresses, or configuration values in embedded systems and digital electronics.
Given Data / Assumptions:
Concept / Approach:
Translate each hex digit independently to a 4-bit group and then concatenate in the same left-to-right order. No arithmetic is needed beyond table mapping 0–F → 0000–1111.
Step-by-Step Solution:
Verification / Alternative check:
Group the binary back into nibbles: 1000 1011 0011 1111 → 8 B 3 F → 8B3F₁₆, confirming accuracy.
Why Other Options Are Wrong:
Common Pitfalls:
Reversing nibble order or failing to keep four bits per hex digit (especially losing leading zeros within a nibble).
Final Answer:
1000101100111111
Discussion & Comments