Quiz 1 / 627718dd 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. 240c005f 2408ffad 01887821 25e8005d 00100100 00001100 00000000 01011111 00100100 00001000 11111111 10101101 00000001 10001000 01111000 00100001 00100101 11101000 00000000 01011101 001001 00000 01100 0000000001011111 001001 00000 01000 1111111110101101 000000 01100 01000 01111 00000 100001 001001 01111 01000 0000000001011101 4. Decode it into MIPS assembly language. addiu $12, $0, 95 addiu $8, $0, -83 addu $15, $12, $8 addiu $8, $15, 93 addiu t4, zero, 95 addiu t0, zero, -83 addu t7, t4, t0 addiu t0, t7, 93 5. What is the result (register values) of this calculation t4 = 95 0000005f t0 = 105 00000069 t7 = 12 0000000c