Step 1: Interpret the binary number structure
The given binary number is:
10.011
It consists of:
• Integer part: 10
• Fractional part: 011
Step 2: Convert the integer part to decimal
Binary 10 represents:
1 × 21 + 0 × 20 = 2
So, integer value = 2
Step 3: Convert the fractional part to decimal
Binary fraction .011 is evaluated as:
0 × 2−1 + 1 × 2−2 + 1 × 2−3
= 0 + 0.25 + 0.125 = 0.375
Step 4: Add integer and fractional values
2 + 0.375 = 2.375
Final Answer:
2.375