Quiz 1 / 2af1e5c8 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. 240d0043 240affc8 01aa7021 25ca0051 00100100 00001101 00000000 01000011 00100100 00001010 11111111 11001000 00000001 10101010 01110000 00100001 00100101 11001010 00000000 01010001 001001 00000 01101 0000000001000011 001001 00000 01010 1111111111001000 000000 01101 01010 01110 00000 100001 001001 01110 01010 0000000001010001 4. Decode it into MIPS assembly language. addiu $13, $0, 67 addiu $10, $0, -56 addu $14, $13, $10 addiu $10, $14, 81 addiu t5, zero, 67 addiu t2, zero, -56 addu t6, t5, t2 addiu t2, t6, 81 5. What is the result (register values) of this calculation t5 = 67 00000043 t2 = 92 0000005c t6 = 11 0000000b