How Do I Convert Decimal To Binary?
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.
To convert a decimal number to a binary number, you need to divide the number by 2 repeatedly until you get a quotient of 0. For each division, you will take the remainder and write it down from the bottom up. The remainder will always be either 0 or 1.
For example, to convert the decimal number 35 to binary:
35 / 2 = 17, remainder 1
17 / 2 = 8, remainder 1
8 / 2 = 4, remainder 0
4 / 2 = 2, remainder 0
2 / 2 = 1, remainder 0
1 / 2 = 0, remainder 1
The binary number is 100011.
To convert decimal to binary, start by dividing the decimal number by two and write down the quotient and remainder. Repeat the division process with the quotient until the number equals 0 or you reach the binary equivalent of 1. Read the remainders from the bottom up to get the binary number.