Tutorial 1
Tutorial 1
Part A
1. What is the decimal value of 101 (binary)? 1 + 4 = 5
2. What is the decimal value of 1001001 (binary)? 1 + 8 + 64 = 73
3. What is the decimal value of 40 (base 16)? (0*16^(0)) + (4*16^(1)) = 64
4. What is the decimal value of FE (base 16)? (14*16^(0)) + (15*16^(1)) = 254
5. What is the binary representation for 29 (decimal)? 16 + 8 + 4 + 1 = 11101
6. What is the hexadecimal representation for 73 (decimal)? 73 = (16*4) + 9
= 49
Part B
Give the decimal value of each of the following bit numbers.
7. 1111 0011 = 1 + 2 + 16 + 32 + 64 + 128 = 243
8. 1011 1011 = 1 + 2 + 8 + 16 + 32 + 128 = 187
Part C
Give the binary equivalent of each of the following hexadecimal numbers.
9. 5E8D = 0101 1110 1000 1101
10. A72B = 1010 0111 0010 1011
Part D
Give the hexadecimal equivalent of each of the following binary numbers.
11. 1001 1100 0010 1011 1111 0101 0000 0111 = 9C2BF507
12. 0001 1010 0011 1101 0110 0100 1000 1110 = 1A3D648E
Computer Architecture and Organization –ITS 62704 202003