DECIMAL | BINARY |
---|---|
0 | 0000 |
1 | 0001 |
2 | 0010 |
3 | 0011 |
4 | 0100 |
5 | 0101 |
6 | 0110 |
7 | 0111 |
8 | 1000 |
9 | 1001 |
10 | 1010 |
11011BIN = ?DEC
STEPS:
Step 1. A five-column table is needed because 11011 has five digits. Start byputting a 1 into the upper-right box of the five-column table.
Step 2. Fill in the remaining first row by continually multiplying by the base. Because the original number is in binary, fill the columns by continually multiplying the product by 2.
Step 3. Place the numbers to be converted into the second row.
Step 4. Add the result of multiplying row 1 by row 2.
Answer: 27DEC
30DEC = ?BIN
Step 1. Create a flexible table with enough columns until the number in the upper row is just bigger than the number you are converting.
Step 2. Start with the largest number that is still smaller than the target number. Subtract the number in the upper row of the table from the original number.
Step 3. 14 − 8 = 6
Step 4. 6 − 4 = 2
Step 5. 2 − 2 = 0
Step 6: 0
Answer: 11110BIN
\