Quiz 1 / 3c06baa1 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. 240e0032 240effc8 01ce6021 258e0057 00100100 00001110 00000000 00110010 00100100 00001110 11111111 11001000 00000001 11001110 01100000 00100001 00100101 10001110 00000000 01010111 001001 00000 01110 0000000000110010 001001 00000 01110 1111111111001000 000000 01110 01110 01100 00000 100001 001001 01100 01110 0000000001010111 4. Decode it into MIPS assembly language. addiu $14, $0, 50 addiu $14, $0, -56 addu $12, $14, $14 addiu $14, $12, 87 addiu t6, zero, 50 addiu t6, zero, -56 addu t4, t6, t6 addiu t6, t4, 87 5. What is the result (register values) of this calculation t6 = 50 00000032 t6 = 81 00000051 t4 = -6 fffffffa