How To Convert Decimal Numbers 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 binary, divide the number by 2 and record the remainder. Repeat the process until the result is 0. The binary number is the sequence of remainders obtained. For example, to convert 14 to binary:
Divide 14 by 2: remainder 0, quotient 7
Divide 7 by 2: remainder 1, quotient 3
Divide 3 by 2: remainder 1, quotient 1
Divide 1 by 2: remainder 1, quotient 0
The binary number is 1110, which is the sequence of remainders obtained.