answersLogoWhite

0

First of all, take a binary number like

10111

then take the first digit on the right and multiply it by 2^0 or 1

1 X 1 = 1

then you take the second digit and multiply it by 2^1 or 2

1 X 2 = 2

then you take the third digit and multiply it by 2^2 or 4

1 X 4 = 4

then you continue to the next digit and multiply it by 2^3 or 8

0 X 8 = 0

you proceed to the next digit and multiply it by 2^4 or 16

1 x 16 = 16

Finally, you add all the answers from the multiplication problems for each digit (1 + 2 + 4 + 0 + 16, for the above problem)

if you convert 10111 from binary into decimal you should get 23

If there are more digits, then you continue to multiply the next digit by 2 raised to the next power, until you reach the last digit, but you follow the same steps.

User Avatar

Wiki User

8y ago

What else can I help you with?