Question: Using the initial contents of array1 and array2 (given below in the initializer list), what would be the output after the following code executes? int[]

Using the initial contents of array1 and array2 (given below in the initializer list), what would be the output after the following code executes? int[] array1 = { 1,0, 6, 9}; int[] array2 = {3,7,5, 2}; for (int i = 3; i >= 0; i--) System.out.println(array[i] + " + array[ i ]); 3 1 70 5 6 29 O 29 5 6 70 3 1 o 1 3 07 6 5 92 o 92 6 5 07 1 3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
