Difficulty: Easy
Correct Answer: A17₁₆
Explanation:
Introduction / Context:Binary-to-hexadecimal conversion is a core skill in computer organization and digital electronics. It relies on grouping binary digits in sets of four (nibbles) because each nibble maps directly to one hexadecimal digit. This question checks your fluency with base conversions and nibble mapping.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
Start with 101000010111₂.Group into nibbles: 1010 0001 0111.Map each nibble: 1010₂ → A; 0001₂ → 1; 0111₂ → 7.Concatenate: A17₁₆.Verification / Alternative check:
Convert A17₁₆ back to binary: A → 1010, 1 → 0001, 7 → 0111, yielding 1010 0001 0111, which matches the original.Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
A17₁₆
Discussion & Comments