Quiz 1 / 18e918c1 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 240bfffc 01cb7821 25eb001c 00100100 00001110 00000000 00001110 00100100 00001011 11111111 11111100 00000001 11001011 01111000 00100001 00100101 11101011 00000000 00011100 001001 00000 01110 0000000000001110 001001 00000 01011 1111111111111100 000000 01110 01011 01111 00000 100001 001001 01111 01011 0000000000011100 4. Decode it into MIPS assembly language. addiu $14, $0, 14 addiu $11, $0, -4 addu $15, $14, $11 addiu $11, $15, 28 addiu t6, zero, 14 addiu t3, zero, -4 addu t7, t6, t3 addiu t3, t7, 28 5. What is the result (register values) of this calculation t6 = 14 0000000e t3 = 38 00000026 t7 = 10 0000000a