Question: 4) What is the output of the following Java code? Explain why the x and y[2] displays those values. public class Main{ public static void
4) What is the output of the following Java code? Explain why the x and y[2] displays those values.
public class Main{
public static void main(String[] args){
int x = 2;
int[] y = { 0, 1, 2, 3, 4, 5, 6 };
method1(x, y);
System.out.println("x is " + x);
System.out.println("y[2] is " + y[2]);
}
public static void method1(int a, int[] b){
a = 10;
b[2] = 7;
}
}
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
