Quiz 1 / 505525a7 1. What areas of knowledge are included in the practice of System-on-Chip design? 2. What is the difference between architecture and microarchitecture? 3. Below is a MIPS program represented in hexadecimal. Show its binary representation. 240b004a 240cffbf 016c4821 252c000b 00100100 00001011 00000000 01001010 00100100 00001100 11111111 10111111 00000001 01101100 01001000 00100001 00100101 00101100 00000000 00001011 001001 00000 01011 0000000001001010 001001 00000 01100 1111111110111111 000000 01011 01100 01001 00000 100001 001001 01001 01100 0000000000001011 4. Decode it into MIPS assembly language. addiu $11, $0, 74 addiu $12, $0, -65 addu $9, $11, $12 addiu $12, $9, 11 addiu t3, zero, 74 addiu t4, zero, -65 addu t1, t3, t4 addiu t4, t1, 11 5. What is the result (register values) of this calculation t3 = 74 0000004a t4 = 20 00000014 t1 = 9 00000009