Quiz 1 / 3db8195b 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. 2409005c 240cfffc 012c7021 25cc0056 00100100 00001001 00000000 01011100 00100100 00001100 11111111 11111100 00000001 00101100 01110000 00100001 00100101 11001100 00000000 01010110 001001 00000 01001 0000000001011100 001001 00000 01100 1111111111111100 000000 01001 01100 01110 00000 100001 001001 01110 01100 0000000001010110 4. Decode it into MIPS assembly language. addiu $9, $0, 92 addiu $12, $0, -4 addu $14, $9, $12 addiu $12, $14, 86 addiu t1, zero, 92 addiu t4, zero, -4 addu t6, t1, t4 addiu t4, t6, 86 5. What is the result (register values) of this calculation t1 = 92 0000005c t4 = 174 000000ae t6 = 88 00000058