logo CodeStepByStep logo

referenceMystery4

Language/Type: Java parameters reference semantics

The following program produces 4 lines of output. Write each line of output below as it would appear on the console.

public class ReferenceMystery4 {
    public static void main(String[] args) {
        int[] a = {2, 0, 1};
        int b = 3;
        mystery(a, b, a[0]);
        System.out.println(Arrays.toString(a) + " " + b);

        b = a[0] + a[1] + a[2];
        mystery(a, a[1], a[2]);
        System.out.println(Arrays.toString(a) + " " + b);
    }

    public static void mystery(int[] a, int b, int c) {
        for (int i = 0; i < a.length; i++) {
            a[i] = a[i] * 2;
        }
        b++;
        c--;
        System.out.println(Arrays.toString(a) + " " + b + " " + c);
    }
}
line 1
line 2
line 3
line 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.