Quiz 1 / 366c4214 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. 240f0030 2409ffbe 01e96021 2589003c 00100100 00001111 00000000 00110000 00100100 00001001 11111111 10111110 00000001 11101001 01100000 00100001 00100101 10001001 00000000 00111100 001001 00000 01111 0000000000110000 001001 00000 01001 1111111110111110 000000 01111 01001 01100 00000 100001 001001 01100 01001 0000000000111100 4. Decode it into MIPS assembly language. addiu $15, $0, 48 addiu $9, $0, -66 addu $12, $15, $9 addiu $9, $12, 60 addiu t7, zero, 48 addiu t1, zero, -66 addu t4, t7, t1 addiu t1, t4, 60 5. What is the result (register values) of this calculation t7 = 48 00000030 t1 = 42 0000002a t4 = -18 ffffffee