Quiz 1 / 5a28c764 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. 24080041 240affe8 010a6821 25aa0030 00100100 00001000 00000000 01000001 00100100 00001010 11111111 11101000 00000001 00001010 01101000 00100001 00100101 10101010 00000000 00110000 001001 00000 01000 0000000001000001 001001 00000 01010 1111111111101000 000000 01000 01010 01101 00000 100001 001001 01101 01010 0000000000110000 4. Decode it into MIPS assembly language. addiu $8, $0, 65 addiu $10, $0, -24 addu $13, $8, $10 addiu $10, $13, 48 addiu t0, zero, 65 addiu t2, zero, -24 addu t5, t0, t2 addiu t2, t5, 48 5. What is the result (register values) of this calculation t0 = 65 00000041 t2 = 89 00000059 t5 = 41 00000029