logo CodeStepByStep logo

ArrayMystery

Language/Type: C# arrays array mystery

Consider the following method:

public static void Mystery(int[] list)
{
    for (int i = 1; i < list.Length; i++)
    {
        list[i] = list[i] + list[i - 1];
    }
}

Indicate in the right-hand column what values would be stored in the array after the method mystery executes if the integer array in the left-hand column is passed as a parameter to Mystery.

Be sure to enter your array in correct format, and entering elements with their appropriate type. For example, for an int[] holding the elements 1, 2, and 5, this would be entered as:

{1, 2, 5}
{8}
{6, 3}
{2, 4, 6}
{1, 2, 3, 4}
{7, 3, 2, 0, 5}

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.