logo Practice-It logo

BJP3 Self-Check 7.24: arrayMystery1

Language/Type: Java array mystery arrays
Author: Marty Stepp (on 2013/09/02)

Consider the following method, mystery.

public static void mystery(int[] a, int[] b) {
    for (int i = 0; i < a.length; i++) {
        a[i] += b[b.length - 1 - i];
    }
}

What are the values of the elements in array a1 after the following code executes?

int[] a1 = {1, 3, 5, 7, 9};
int[] a2 = {1, 4, 9, 16, 25};
mystery(a1, a2);            
a1[0]
a1[1]
a1[2]
a1[3]
a1[4]

You must log in before you can solve this problem.


Log In

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.