Fill in the blank cells of the table below by calculating ea
Fill in the blank cells of the table below by calculating each number manually and showing ALL work. You do not need to include leading zeros. Here is an example: If you were converting a decimal 10 to binary, your answer would be: (10/8=1R2) is one 8 + (2/4=0R2) is zero 4\'s + (2/2=1 R0) is one 2\'s + (0/1=0) zero 1\'s = 1010.
Solution
For 97 conversion to Hexadecimal
97/16 = 6
Remaining 1 will be added so the final answer in hexadecimal will be 61
For 97 conversion to Octal
97 = 1 * 8^2 + 4 * 8 + 1 * 8^0
Hence the converted number will be 141
For 97 conversion into binary
97 = 2^6 + 2^5 + 2^1, which will be 01100001
| Decimal | Hexadecimal | Octal | Binary |
| 97 | 61 | 141 | 01100001 |
| 230 | E6 | 346 | 11100110 |
| 30 | 1E | 36 | 00011110 |
| 45 | 2D | 55 | 0101101 |
