Quiz 1 / 47696495 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. 24080027 240fffbc 010f7821 25ef005c 00100100 00001000 00000000 00100111 00100100 00001111 11111111 10111100 00000001 00001111 01111000 00100001 00100101 11101111 00000000 01011100 001001 00000 01000 0000000000100111 001001 00000 01111 1111111110111100 000000 01000 01111 01111 00000 100001 001001 01111 01111 0000000001011100 4. Decode it into MIPS assembly language. addiu $8, $0, 39 addiu $15, $0, -68 addu $15, $8, $15 addiu $15, $15, 92 addiu t0, zero, 39 addiu t7, zero, -68 addu t7, t0, t7 addiu t7, t7, 92 5. What is the result (register values) of this calculation t0 = 39 00000027 t7 = 63 0000003f t7 = -29 ffffffe3