Quiz 1 / 620728b3 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. 240e005f 240ffff4 01cf6021 258f002a 00100100 00001110 00000000 01011111 00100100 00001111 11111111 11110100 00000001 11001111 01100000 00100001 00100101 10001111 00000000 00101010 001001 00000 01110 0000000001011111 001001 00000 01111 1111111111110100 000000 01110 01111 01100 00000 100001 001001 01100 01111 0000000000101010 4. Decode it into MIPS assembly language. addiu $14, $0, 95 addiu $15, $0, -12 addu $12, $14, $15 addiu $15, $12, 42 addiu t6, zero, 95 addiu t7, zero, -12 addu t4, t6, t7 addiu t7, t4, 42 5. What is the result (register values) of this calculation t6 = 95 0000005f t7 = 125 0000007d t4 = 83 00000053