Question: Write the output produced when the following method is passed each of the following lists: a. [72, 20] b. [1, 2, 3, 4, 5, 6]
Write the output produced when the following method is passed each of the following lists:

a. [72, 20]
b. [1, 2, 3, 4, 5, 6]
c. [10, 20, 30, 40]
public static void mystery3 (ArrayList list) { for (int i = list.size () 2; i > 0; i--) { %3D int a = list.get (i); int b = list.get (i + 1); list.set (i, a + b); System.out.println (list);
Step by Step Solution
3.29 Rating (158 Votes )
There are 3 Steps involved in it
Output produced when ... View full answer
Get step-by-step solutions from verified subject matter experts
