Convert Decimal Numbers to Binary Numbers
Converting Decimal Numbers to Binary
The binary equivalents of the decimal numbers 43, 64, 100, 95, 82, and 210 are 101011, 1000000, 1100100, 1011111, 1010010, and 11010010 respectively. This conversion is done by repeatedly dividing the decimal number by 2 and recording the remainders.
Explanation
The process of converting decimal numbers to binary involves continuously dividing the decimal number by 2 and tracking the remainders. The binary equivalent is obtained by arranging the remainders in reverse order, starting from the last remainder obtained. Here are the conversions:
- 43 in decimal is 101011 in binary.
- 64 in decimal is 1000000 in binary.
- 100 in decimal is 1100100 in binary.
- 95 in decimal is 1011111 in binary.
- 82 in decimal is 1010010 in binary.
- 210 in decimal is 11010010 in binary.