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:

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);

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

1 Expert Approved Answer
Step: 1 Unlock

Output produced when ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Building Java Programs A Back to Basics Approach Questions!