Quiz 1 / 494a3fce 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. 240e000e 240bffdc 01cb5021 254b0047 00100100 00001110 00000000 00001110 00100100 00001011 11111111 11011100 00000001 11001011 01010000 00100001 00100101 01001011 00000000 01000111 001001 00000 01110 0000000000001110 001001 00000 01011 1111111111011100 000000 01110 01011 01010 00000 100001 001001 01010 01011 0000000001000111 4. Decode it into MIPS assembly language. addiu $14, $0, 14 addiu $11, $0, -36 addu $10, $14, $11 addiu $11, $10, 71 addiu t6, zero, 14 addiu t3, zero, -36 addu t2, t6, t3 addiu t3, t2, 71 5. What is the result (register values) of this calculation t6 = 14 0000000e t3 = 49 00000031 t2 = -22 ffffffea