What are the required steps to convert base 10 decimal system
number 110 107 239 to base 2 unsigned binary equivalent?
- A number written in base ten, or a decimal system number, is a number written using the digits 0 through 9. A number written in base two, or a binary system number, is a number written using only the digits 0 and 1.
1. Divide the number repeatedly by 2:
Keep track of each remainder.
Stop when you get a quotient that is equal to zero.
- division = quotient + remainder;
- 110 107 239 ÷ 2 = 55 053 619 + 1;
- 55 053 619 ÷ 2 = 27 526 809 + 1;
- 27 526 809 ÷ 2 = 13 763 404 + 1;
- 13 763 404 ÷ 2 = 6 881 702 + 0;
- 6 881 702 ÷ 2 = 3 440 851 + 0;
- 3 440 851 ÷ 2 = 1 720 425 + 1;
- 1 720 425 ÷ 2 = 860 212 + 1;
- 860 212 ÷ 2 = 430 106 + 0;
- 430 106 ÷ 2 = 215 053 + 0;
- 215 053 ÷ 2 = 107 526 + 1;
- 107 526 ÷ 2 = 53 763 + 0;
- 53 763 ÷ 2 = 26 881 + 1;
- 26 881 ÷ 2 = 13 440 + 1;
- 13 440 ÷ 2 = 6 720 + 0;
- 6 720 ÷ 2 = 3 360 + 0;
- 3 360 ÷ 2 = 1 680 + 0;
- 1 680 ÷ 2 = 840 + 0;
- 840 ÷ 2 = 420 + 0;
- 420 ÷ 2 = 210 + 0;
- 210 ÷ 2 = 105 + 0;
- 105 ÷ 2 = 52 + 1;
- 52 ÷ 2 = 26 + 0;
- 26 ÷ 2 = 13 + 0;
- 13 ÷ 2 = 6 + 1;
- 6 ÷ 2 = 3 + 0;
- 3 ÷ 2 = 1 + 1;
- 1 ÷ 2 = 0 + 1;
2. Construct the base 2 representation of the positive number:
Take all the remainders starting from the bottom of the list constructed above.
110 107 239(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
110 107 239 (base 10) = 110 1001 0000 0001 1010 0110 0111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.