Quiz 1 / 2d16bf41 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. 240c0025 2409ffa6 01897821 25e90062 00100100 00001100 00000000 00100101 00100100 00001001 11111111 10100110 00000001 10001001 01111000 00100001 00100101 11101001 00000000 01100010 001001 00000 01100 0000000000100101 001001 00000 01001 1111111110100110 000000 01100 01001 01111 00000 100001 001001 01111 01001 0000000001100010 4. Decode it into MIPS assembly language. addiu $12, $0, 37 addiu $9, $0, -90 addu $15, $12, $9 addiu $9, $15, 98 addiu t4, zero, 37 addiu t1, zero, -90 addu t7, t4, t1 addiu t1, t7, 98 5. What is the result (register values) of this calculation t4 = 37 00000025 t1 = 45 0000002d t7 = -53 ffffffcb