Quiz 1 / 3d7af747 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. 240b0062 240fffcc 016f5821 256f0041 00100100 00001011 00000000 01100010 00100100 00001111 11111111 11001100 00000001 01101111 01011000 00100001 00100101 01101111 00000000 01000001 001001 00000 01011 0000000001100010 001001 00000 01111 1111111111001100 000000 01011 01111 01011 00000 100001 001001 01011 01111 0000000001000001 4. Decode it into MIPS assembly language. addiu $11, $0, 98 addiu $15, $0, -52 addu $11, $11, $15 addiu $15, $11, 65 addiu t3, zero, 98 addiu t7, zero, -52 addu t3, t3, t7 addiu t7, t3, 65 5. What is the result (register values) of this calculation t3 = 98 00000062 t7 = 111 0000006f t3 = 46 0000002e