Difficulty: Easy
Correct Answer: 201
Explanation:
Introduction / Context:
Converting a binary number to decimal reinforces the idea that each bit position represents a power of 2. Understanding positional weights lets you evaluate any base-2 number quickly and accurately.
Given Data / Assumptions:
Concept / Approach:
Write the binary digits aligned with their powers of two and add the weights where the bit is 1. This is the standard positional notation method for base conversion.
Step-by-Step Solution:
Verification / Alternative check:
Group into hexadecimal nibbles: 1100 1001₂ = C9₁₆. Convert hex to decimal: C(12)*16 + 9 = 192 + 9 = 201, confirming the result.
Why Other Options Are Wrong:
Common Pitfalls:
Reading from the wrong end (mixing up MSB and LSB), forgetting a weight, or confusing binary with decimal digit concatenation.
Final Answer:
201
Discussion & Comments