Q12 Chap 1 Pg49
public class test{
public static void main(
String []args){
byte [][] big = new byte[7][7];
byte [][]b=new byte[2][1];
byte b3=5;
byte b2[][][][]=new byte [2][3][1][2];
//line of code to be inserted.Answer is A,B,E,F
}
}
A.b2[0][1]=b;
B.b[0][0]=b3;
C.b2[1][1][0]=b[0][0];
D.b2[1][2][0]=b;
E.b2[0][1][0][0]=b[0][0];
F.b2[0][1]=big;
I have go through the answer 's explaination,
but can't understand how to get the solution.
Apart from that,I have also refer to diagram in Fig 1-7 Pg31,but still confused.
Can someone please enlighten me,many thanks.