Joke Collection Website - Mood Talk - Programming: What is converting the decimal number 77 into a binary number and how to write it?

Programming: What is converting the decimal number 77 into a binary number and how to write it?

Convert decimal to binary using short division.

77 (decimal)

Convert to binary

77 is divided by 2 (to convert to decimal, divide by the decimal, and to convert to binary, divide by 2 )

Quotient=38 Remainder=1

38 divided by 2

Quotient=19 Remainder=0

19 divided by 2< /p>

Quotient=9 Remainder=1

9 divided by 2

Quotient=4 Remainder=1

4 divided by 2

Quotient=2 Remainder=0

2 divided by 2

Quotient 1 Remainder=0

1 divided by 2

Quotient 0 Remainder = 1

This arithmetic ends when the quotient is equal to 0

Then the remainder results are sorted from bottom to top and output to get the binary number: 1001101