How To Convert Dec 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, use the divide–by–2 method. Start by dividing the decimal number by 2 and record the quotient and remainder. Then divide the quotient by 2 again and record the new quotient and remainder, and so on until the quotient is 0. The remainders form the binary number, reading from bottom to top. For example, to convert the decimal number
53 to binary: 53/2 = Quotient 26,
Remainder 1 26/2 = Quotient 13,
Remainder 0 13/2 = Quotient 6,
Remainder 1 6/2 = Quotient 3,
Remainder 0 3/2 = Quotient 1,
Remainder 1 1/2 = Quotient 0,
Remainder 1
So the binary equivalent of 53 is 110101.