Quiz 1 / 5e96b85 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. 24080031 240cffcf 010c4021 250c0016 00100100 00001000 00000000 00110001 00100100 00001100 11111111 11001111 00000001 00001100 01000000 00100001 00100101 00001100 00000000 00010110 001001 00000 01000 0000000000110001 001001 00000 01100 1111111111001111 000000 01000 01100 01000 00000 100001 001001 01000 01100 0000000000010110 4. Decode it into MIPS assembly language. addiu $8, $0, 49 addiu $12, $0, -49 addu $8, $8, $12 addiu $12, $8, 22 addiu t0, zero, 49 addiu t4, zero, -49 addu t0, t0, t4 addiu t4, t0, 22 5. What is the result (register values) of this calculation t0 = 49 00000031 t4 = 22 00000016 t0 = 0 00000000