Quiz 1 / 11ce6153 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. 2409001a 2409ffb9 01297821 25e9003a 00100100 00001001 00000000 00011010 00100100 00001001 11111111 10111001 00000001 00101001 01111000 00100001 00100101 11101001 00000000 00111010 001001 00000 01001 0000000000011010 001001 00000 01001 1111111110111001 000000 01001 01001 01111 00000 100001 001001 01111 01001 0000000000111010 4. Decode it into MIPS assembly language. addiu $9, $0, 26 addiu $9, $0, -71 addu $15, $9, $9 addiu $9, $15, 58 addiu t1, zero, 26 addiu t1, zero, -71 addu t7, t1, t1 addiu t1, t7, 58 5. What is the result (register values) of this calculation t1 = 26 0000001a t1 = 13 0000000d t7 = -45 ffffffd3