Quiz 1 / 75f129d4 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. 24090022 2409ffef 01294021 25090050 00100100 00001001 00000000 00100010 00100100 00001001 11111111 11101111 00000001 00101001 01000000 00100001 00100101 00001001 00000000 01010000 001001 00000 01001 0000000000100010 001001 00000 01001 1111111111101111 000000 01001 01001 01000 00000 100001 001001 01000 01001 0000000001010000 4. Decode it into MIPS assembly language. addiu $9, $0, 34 addiu $9, $0, -17 addu $8, $9, $9 addiu $9, $8, 80 addiu t1, zero, 34 addiu t1, zero, -17 addu t0, t1, t1 addiu t1, t0, 80 5. What is the result (register values) of this calculation t1 = 34 00000022 t1 = 97 00000061 t0 = 17 00000011