Quiz 1 / 6383d697 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. 240c002b 240bffc1 018b6021 258b0035 00100100 00001100 00000000 00101011 00100100 00001011 11111111 11000001 00000001 10001011 01100000 00100001 00100101 10001011 00000000 00110101 001001 00000 01100 0000000000101011 001001 00000 01011 1111111111000001 000000 01100 01011 01100 00000 100001 001001 01100 01011 0000000000110101 4. Decode it into MIPS assembly language. addiu $12, $0, 43 addiu $11, $0, -63 addu $12, $12, $11 addiu $11, $12, 53 addiu t4, zero, 43 addiu t3, zero, -63 addu t4, t4, t3 addiu t3, t4, 53 5. What is the result (register values) of this calculation t4 = 43 0000002b t3 = 33 00000021 t4 = -20 ffffffec