Quiz 1 / 38520dd1 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. 240a001a 2408ffbb 01485821 25680025 00100100 00001010 00000000 00011010 00100100 00001000 11111111 10111011 00000001 01001000 01011000 00100001 00100101 01101000 00000000 00100101 001001 00000 01010 0000000000011010 001001 00000 01000 1111111110111011 000000 01010 01000 01011 00000 100001 001001 01011 01000 0000000000100101 4. Decode it into MIPS assembly language. addiu $10, $0, 26 addiu $8, $0, -69 addu $11, $10, $8 addiu $8, $11, 37 addiu t2, zero, 26 addiu t0, zero, -69 addu t3, t2, t0 addiu t0, t3, 37 5. What is the result (register values) of this calculation t2 = 26 0000001a t0 = -6 fffffffa t3 = -43 ffffffd5