Computer Science
Convert the following binary number to its decimal equivalent:
(1010.001)2 to ( )10
Number System
7 Likes
Answer
Converting integral part
Binary No | Power | Value | Result |
---|---|---|---|
0 | 20 | 1 | 0x1=0 |
1 | 21 | 2 | 1x2=2 |
0 | 22 | 4 | 0x4=0 |
1 | 23 | 8 | 1x8=8 |
Converting fractional part
Binary No | Power | Value | Result |
---|---|---|---|
0 | 2-1 | 0.5 | 0x0.5=0 |
0 | 2-2 | 0.25 | 0x0.25=0 |
1 | 2-3 | 0.125 | 1x0.125=0.125 |
Equivalent decimal number = 2 + 8 + 0.125 = 10.125
Therefore, (1010.001)2 = (10.125)10
Answered By
5 Likes
Related Questions
Convert the following binary number to its decimal equivalent:
(1100111)2 to ( )10
Convert the following binary number to its decimal equivalent:
(10101011)2 to ( )10
Convert the following binary number to its decimal equivalent:
(10100.11)2 to ( )10
Convert the following binary number to its decimal equivalent:
(1010.111)2 to ( )10