How To Convert Decimal To Binary By Hand?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Step 1: Divide the decimal number by 2.
Step 2: Get the integer quotient for the next iteration.
Step 3: Get the remainder for the binary digit.
Step 4: Repeat the steps until the quotient is equal to 0.
Step 5: Write down the remainders in reverse order to obtain the binary number.
1. Write down the decimal number.
2. Divide the number by 2.
3. Get the integer quotient for the next iteration.
4. Get the remainder for the binary digit.
5. Repeat the steps until the quotient is equal to 0.
6. Write down all the remainders in reverse order. That’s your binary number.
For example:
Decimal number: 43
43 / 2 = 21 (Remainder: 1)
21 / 2 = 10 (Remainder: 1)
10 / 2 = 5 (Remainder: 0)
5 / 2 = 2 (Remainder: 1)
2 / 2 = 1 (Remainder: 0)
1 / 2 = 0 (Remainder: 1)
Binary number: 101011