logo Practice-It logo

arrayMystery

Language/Type: Java arrays array mystery
Author: Marty Stepp

Consider the following method:

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

Indicate in the right-hand column what values would be stored in the array after the method arrayMystery executes if each array below is passed as a parameter to it.

String[] a1 = {"a", "b", "c"}; arrayMystery(a1);
String[] a2 = {"a", "bb", "c", "dd"}; arrayMystery(a2);
String[] a3 = {"z", "y", "142", "w", "xx"}; arrayMystery(a3);

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.