answersLogoWhite

0

Repeatedly divide the decimal value by 2 and take the remainder (which can only be 0 or 1) until the decimal value is 0. The first remainder is the low-order bit, thus we work through the bits in increasing order of magnitude.

For example, decimal value 50:

50 / 2 = 25 r 0

25 / 2 = 12 r 1

12 / 2 = 6 r 0

6 / 2 = 3 r 0

3 / 2 = 1 r 1

1 / 2 = 0 r 1

Thus 50 decimal is 110010 in binary.

User Avatar

Wiki User

8y ago

What else can I help you with?

Related Questions

How do you convert binary to excess 3 code?

To convert a binary number to Excess-3 code, first, convert the binary number to its decimal equivalent. Then, add 3 to the decimal value. Finally, convert the resulting decimal number back to binary. For instance, to convert the binary number 1010 (which is 10 in decimal), you would calculate 10 + 3 = 13, and then convert 13 back to binary, resulting in 1101 in Excess-3 code.


How to Convert 11.1 binary to decimal?

The binary number 11.1 in decimal would be 3.5


Convert binary number 110111 to decimal?

Binary 110111 is equivalent to decimal 55.


Convert hexadecimal 4F7B in to binary and decimal?

4F7B: Binary = 100111101111011 Decimal = 20347


Convert 186 decimal numbers to its binary equivalent?

Convert 189 to binary number


What is the binary equivalent of 50?

The binary equivalent of the decimal number 50 is 110010. To convert it, you can divide the number by 2 and record the remainders. Starting with 50, the remainders collected from each division yield the binary representation when read from bottom to top.


How does 11.25 convert binary into decimal?

11.25 is not a valid binary.


How do you convert 000010 in binary?

000010 in binary is 2 in decimal.


Convert binary 10011 to decimal?


How do you convert decimal number 63 to binary?

The binary equivalent of the decimal number 63 is 111111.


What is 97 in binary code?

You can easily convert decimal to binary in the scientific calculator - for example, the scientific calculator found in Windows. In this case, type the number in decimal, then click on "binary" to convert to binary.


Convert the following decimal numbers into their equivalent binary numbers and then convert the resulting binary numbers back into the decimal numbers a. 6401 b. 1010110?

a) 6401 in Binary is 1100100000001b) 1010110 in decimal is 86