How To Convert 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 number to binary, use the following steps:
1. Start with the number you want to convert.
2. Divide the number by two and record the remainder.
3. Divide the result of the division by two and record the remainder.
4. Continue the process until the result of the division is zero.
5. The sequence of remainders you obtained is the binary representation of the number, with the least significant bit (LSB) at the bottom.
For example, to convert the number 28 to binary, divide it by two and record the remainder:
28/2 = 14 (remainder 0)
14/2 = 7 (remainder 0)
7/2 = 3 (remainder 1)
3/2 = 1 (remainder 1)
1/2 = 0 (remainder 1)
The binary representation of 28 is 11100.