logo CodeStepByStep logo

Mystery1

Language/Type: C# arrays

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

public static void Mystery1(int[] a1, int[] a2)
{
    for (int i = 0; i < a1.Length; i++)
    {
        a1[i] += a2[a2.Length - i - 1];
    }
}
int[] a1 = {1, 3, 5, 7, 9};
int[] a2 = {1, 4, 9, 16, 25};
Mystery1(a1, a2);           
a1[0]
a1[1]
a1[2]
a1[3]
a1[4]

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.