Difficulty: Easy
Correct Answer: 11001001₂
Explanation:
Introduction / Context:Each hex digit expands to a 4-bit binary nibble. Converting hex to binary is a direct digit-by-digit mapping exercise.
Given Data / Assumptions:
Concept / Approach:Replace each hex digit with its 4-bit binary equivalent and concatenate in order (most significant digit first).
Step-by-Step Solution:
1) C → 1100.2) 9 → 1001.3) Combined binary: 11001001₂.4) Check bit count: two hex digits → 8 bits.Verification / Alternative check:Convert back to hex by grouping binary 11001001₂ into nibbles → 1100 (C), 1001 (9).
Why Other Options Are Wrong:
Common Pitfalls:Reversing nibble order or misreading 9 as 1001 vs 0110 (6).
Final Answer:11001001₂
Discussion & Comments