Quiz 1 / 33894d36 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. 240f002c 240dffc5 01ed7821 25ed000e 00100100 00001111 00000000 00101100 00100100 00001101 11111111 11000101 00000001 11101101 01111000 00100001 00100101 11101101 00000000 00001110 001001 00000 01111 0000000000101100 001001 00000 01101 1111111111000101 000000 01111 01101 01111 00000 100001 001001 01111 01101 0000000000001110 4. Decode it into MIPS assembly language. addiu $15, $0, 44 addiu $13, $0, -59 addu $15, $15, $13 addiu $13, $15, 14 addiu t7, zero, 44 addiu t5, zero, -59 addu t7, t7, t5 addiu t5, t7, 14 5. What is the result (register values) of this calculation t7 = 44 0000002c t5 = -1 ffffffff t7 = -15 fffffff1