Quiz 1 / 2e6edc6a 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. 240e003c 240fffc0 01cf7821 25ef0012 00100100 00001110 00000000 00111100 00100100 00001111 11111111 11000000 00000001 11001111 01111000 00100001 00100101 11101111 00000000 00010010 001001 00000 01110 0000000000111100 001001 00000 01111 1111111111000000 000000 01110 01111 01111 00000 100001 001001 01111 01111 0000000000010010 4. Decode it into MIPS assembly language. addiu $14, $0, 60 addiu $15, $0, -64 addu $15, $14, $15 addiu $15, $15, 18 addiu t6, zero, 60 addiu t7, zero, -64 addu t7, t6, t7 addiu t7, t7, 18 5. What is the result (register values) of this calculation t6 = 60 0000003c t7 = 14 0000000e t7 = -4 fffffffc