Quiz 1 / 24cf34f4 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. 240a004b 240fffdb 014f5821 256f0031 00100100 00001010 00000000 01001011 00100100 00001111 11111111 11011011 00000001 01001111 01011000 00100001 00100101 01101111 00000000 00110001 001001 00000 01010 0000000001001011 001001 00000 01111 1111111111011011 000000 01010 01111 01011 00000 100001 001001 01011 01111 0000000000110001 4. Decode it into MIPS assembly language. addiu $10, $0, 75 addiu $15, $0, -37 addu $11, $10, $15 addiu $15, $11, 49 addiu t2, zero, 75 addiu t7, zero, -37 addu t3, t2, t7 addiu t7, t3, 49 5. What is the result (register values) of this calculation t2 = 75 0000004b t7 = 87 00000057 t3 = 38 00000026