Difficulty: Easy
Correct Answer: 1.125
Explanation:
Introduction / Context:Binary numbers can include fractional parts. Converting binary fixed-point values to decimal is essential for interpreting ADC outputs, fixed-point arithmetic in embedded systems, and digital signal processing where fractional precision matters.
Given Data / Assumptions:
Concept / Approach:Binary place values to the left of the point are powers of 2: …, 8, 4, 2, 1. To the right, they are fractional powers: 1/2, 1/4, 1/8, 1/16, etc. Sum the weighted contributions of bits that are 1. Leading zeros do not change the value.
Step-by-Step Solution:
Integer part 0001₂ = 1.Fractional part .0010₂ = (0 * 1/2) + (0 * 1/4) + (1 * 1/8) + (0 * 1/16) = 0.125.Total decimal value = 1 + 0.125 = 1.125.Verification / Alternative check:Multiply the fractional part by 10 is not valid in base-2; instead, verify by converting back: 1.125 decimal = 1 + 1/8 = 1.0010₂, which matches the given binary form.
Why Other Options Are Wrong:
Common Pitfalls:Misplacing fractional weights (confusing 1/2 with 1/8), or reading the binary fraction as if it were decimal digits. Always apply powers of two for each fractional bit position.
Final Answer:1.125
Discussion & Comments