Difficulty: Easy
Correct Answer: 181
Explanation:
Introduction / Context:Hexadecimal B5 uses digits B and 5, where B represents decimal 11. Converting to decimal leverages powers of 16 for each position (16^1, 16^0).
Given Data / Assumptions:
Concept / Approach:Apply positional weights: value = (most significant digit)16^1 + (least significant digit)16^0, then sum to obtain the decimal result.
Step-by-Step Solution:
16^1 = 16, 16^0 = 1Compute: 1116 + 51 = 176 + 5Total = 181Verification / Alternative check:Convert to binary: B5₁₆ = 1011 0101₂. Evaluate 128 + 32 + 16 + 4 + 1 = 181₁₀, confirming the result.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:181
Discussion & Comments