Accenture Java Programming Practice Question
Determine the 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] + " "); } }Answer options
A
0 0
B
1 2
Correct answer: 1 2
Explanation
Correct answer: 1 2.