Difficulty: Easy
Correct Answer: 78
Explanation:
Introduction / Context:
Converting binary to decimal requires summing the place values where bits are 1. This reinforces understanding of positional notation in base 2.
Given Data / Assumptions:
Concept / Approach:
Add the weights corresponding to the 1 bits in the binary string to obtain the decimal value.
Step-by-Step Solution:
Verification / Alternative check:
Interpret as hex first: 0100 1110₂ = 0x4E; convert 0x4E = 4*16 + 14 = 64 + 14 = 78.
Why Other Options Are Wrong:
Common Pitfalls:
Misaligning bit weights, confusing hex representation with decimal value, or forgetting the leading zero does not change value.
Final Answer:
78
Discussion & Comments