Difficulty: Easy
Correct Answer: 916
Explanation:
Introduction / Context:Binary-to-hexadecimal conversion is fundamental in digital electronics and computer architecture. Because 1 hexadecimal digit corresponds exactly to 4 binary bits, grouping bits into nibbles (4-bit groups) makes conversion fast and error-resistant.
Given Data / Assumptions:
Concept / Approach:Map each 4-bit binary nibble to one hexadecimal digit using the standard 0–15 (0–F) correspondence. The nibble 1001₂ equals 9 in decimal, which is 9 in hexadecimal as well. Thus 1001₂ → 9₁₆.
Step-by-Step Solution:
Group into 4 bits: 1001Evaluate nibble: 18 + 04 + 02 + 11 = 9Write in hex: 9 → 916Verification / Alternative check:You can also convert to decimal first: 1001₂ = 9₁₀, and then to hexadecimal, 9₁₀ = 9₁₆. Both methods agree.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:916
Discussion & Comments