Quiz 1 / 3f6754d2 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. 2409004b 240bffc3 012b6821 25ab0042 00100100 00001001 00000000 01001011 00100100 00001011 11111111 11000011 00000001 00101011 01101000 00100001 00100101 10101011 00000000 01000010 001001 00000 01001 0000000001001011 001001 00000 01011 1111111111000011 000000 01001 01011 01101 00000 100001 001001 01101 01011 0000000001000010 4. Decode it into MIPS assembly language. addiu $9, $0, 75 addiu $11, $0, -61 addu $13, $9, $11 addiu $11, $13, 66 addiu t1, zero, 75 addiu t3, zero, -61 addu t5, t1, t3 addiu t3, t5, 66 5. What is the result (register values) of this calculation t1 = 75 0000004b t3 = 80 00000050 t5 = 14 0000000e