Quiz 1 / 46c9ef78 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. 240d0014 240dffc0 01ad4021 250d0030 00100100 00001101 00000000 00010100 00100100 00001101 11111111 11000000 00000001 10101101 01000000 00100001 00100101 00001101 00000000 00110000 001001 00000 01101 0000000000010100 001001 00000 01101 1111111111000000 000000 01101 01101 01000 00000 100001 001001 01000 01101 0000000000110000 4. Decode it into MIPS assembly language. addiu $13, $0, 20 addiu $13, $0, -64 addu $8, $13, $13 addiu $13, $8, 48 addiu t5, zero, 20 addiu t5, zero, -64 addu t0, t5, t5 addiu t5, t0, 48 5. What is the result (register values) of this calculation t5 = 20 00000014 t5 = 4 00000004 t0 = -44 ffffffd4