What is the output of the following code snippet? int[] valu…
What is the output of the following code snippet? int[] values = { 10, 20, 30, 7}; int[] numbers = values; numbers[2] = 24; values[3] = numbers[0] + 6; System.out.println (numbers[2] + ” ” + numbers[3] + ” ” + values[2] + ” ” + values[3]);
Read Details