1. Give two different IJVM translations for the following Java statement:
i = k + n + 5;
2. Give the Java statement that produced the following IJVM code:
ILOAD j ILOAD n ISUB BIPUSH 7 ISUB DUP IADD ISTORE i
3. In the text we mentioned that when translating the statement
if (Z) goto L1; else goto L2
to binary, L2 has to be in the bottom 256 words of the control store. Would it not be equally possible to have L1 at, say, 0x40 and L2 at 0x140? Explain your answer.