Quiz 1 / 340de078 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. 240d0048 240effe7 01ae6821 25ae0035 00100100 00001101 00000000 01001000 00100100 00001110 11111111 11100111 00000001 10101110 01101000 00100001 00100101 10101110 00000000 00110101 001001 00000 01101 0000000001001000 001001 00000 01110 1111111111100111 000000 01101 01110 01101 00000 100001 001001 01101 01110 0000000000110101 4. Decode it into MIPS assembly language. addiu $13, $0, 72 addiu $14, $0, -25 addu $13, $13, $14 addiu $14, $13, 53 addiu t5, zero, 72 addiu t6, zero, -25 addu t5, t5, t6 addiu t6, t5, 53 5. What is the result (register values) of this calculation t5 = 72 00000048 t6 = 100 00000064 t5 = 47 0000002f