Computer Science, asked by ratnakar19, 3 days ago


C.
Convert the following binary numbers into their decimal equivalent.
1. 11000 =
2. 10001 =
3. 111101 =
4. 01000000 =
Pl solve and send with the process ​

Answers

Answered by jahra805
3

Answer:

1.  24

2. 17

3. 61

4.64

Explanation:

to convert from binary to decimal

  • multiply each binary bit with successive base of 2's

eg -    1.            1            1           0             0            0

                        |             |           |               |              |

                     (2^4)     (2^3)    (2^2)        (2^1)       (2^0)

11000 = 1 X (2^4) +1X (2^3)+0X (2^2)+0X (2^1)+0X (2^0)

          = 16 +8 +0+0+0

          =24

similar perform the process for the remaining bits

hope you understood

Similar questions