Question: Question 1 (5 points) For each call of the method below, write the output that is printed: public static void mystery (int i, int i)

Question 1 (5 points) For each call of the method below, write the output that is printed: public static void mystery (int i, int i) { while (i != 0 && j != 0) { i = i lj; j = (j - 1) / 2; System.out.print(i + " " + j + " "); } System.out.println(i); } Method Call A. mystery (5, 0); B. mystery (3, 2); C. mystery (16, 5); D. mystery (80, 9); E. mystery (1600, 40)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
