Quiz 1 / 529ae493 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. 2409000e 240effcf 012e7821 25ee0027 00100100 00001001 00000000 00001110 00100100 00001110 11111111 11001111 00000001 00101110 01111000 00100001 00100101 11101110 00000000 00100111 001001 00000 01001 0000000000001110 001001 00000 01110 1111111111001111 000000 01001 01110 01111 00000 100001 001001 01111 01110 0000000000100111 4. Decode it into MIPS assembly language. addiu $9, $0, 14 addiu $14, $0, -49 addu $15, $9, $14 addiu $14, $15, 39 addiu t1, zero, 14 addiu t6, zero, -49 addu t7, t1, t6 addiu t6, t7, 39 5. What is the result (register values) of this calculation t1 = 14 0000000e t6 = 4 00000004 t7 = -35 ffffffdd