Q37
Determine output: public class Test public static void main(String[] args) int[] x = 1, 2, 3, 4; int[] y = x; x = new int[2]; for(int i = 0; i < x.length; i++) System.out.print(y[i] + " ");
A.
1 2 3 4
B.
0 0 0 0
C.
1 2
AnswerD.
0 0
E.
None of these
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board