Quiz 1 / 2b94d420 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. 240d002e 2408ffc8 01a84821 2528001b 00100100 00001101 00000000 00101110 00100100 00001000 11111111 11001000 00000001 10101000 01001000 00100001 00100101 00101000 00000000 00011011 001001 00000 01101 0000000000101110 001001 00000 01000 1111111111001000 000000 01101 01000 01001 00000 100001 001001 01001 01000 0000000000011011 4. Decode it into MIPS assembly language. addiu $13, $0, 46 addiu $8, $0, -56 addu $9, $13, $8 addiu $8, $9, 27 addiu t5, zero, 46 addiu t0, zero, -56 addu t1, t5, t0 addiu t0, t1, 27 5. What is the result (register values) of this calculation t5 = 46 0000002e t0 = 17 00000011 t1 = -10 fffffff6