Quiz 1 / 1ab64424 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. 240c0034 240cffe9 018c6821 25ac0046 00100100 00001100 00000000 00110100 00100100 00001100 11111111 11101001 00000001 10001100 01101000 00100001 00100101 10101100 00000000 01000110 001001 00000 01100 0000000000110100 001001 00000 01100 1111111111101001 000000 01100 01100 01101 00000 100001 001001 01101 01100 0000000001000110 4. Decode it into MIPS assembly language. addiu $12, $0, 52 addiu $12, $0, -23 addu $13, $12, $12 addiu $12, $13, 70 addiu t4, zero, 52 addiu t4, zero, -23 addu t5, t4, t4 addiu t4, t5, 70 5. What is the result (register values) of this calculation t4 = 52 00000034 t4 = 99 00000063 t5 = 29 0000001d