[5 pts] Suppose we were to execute the following run()
method.
What would it print?public class Question3 { public static int[] f(int[] arr) { arr = new int[arr.length]; for(int i = 0; i < arr.length; i++) { arr[i] = 2 * i; } return arr; } public static void run() { int[] a = { 9, 8, 7 }; int[] b = f(a); IO.println(a[1]); IO.println(b.length); IO.println(b[1]); } }
8 3 2