Hexadecimal to binary conversion Convert the hexadecimal number C9₁₆ to binary.
Electronics
Number Systems and Codes
Difficulty: Easy
Choose an option
-
A10111001₂
-
B10111011₂
-
C10011100₂
-
D11001001₂
Answer
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:
- Hex number: C9₁₆.
- Mappings: C→1100, 9→1001.
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:
- 10111001₂ / 10111011₂ / 10011100₂: Do not map to C9 when regrouped into 4-bit nibbles.
Common Pitfalls:Reversing nibble order or misreading 9 as 1001 vs 0110 (6).
Final Answer:11001001₂