✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the code :
public class Test {
public static void main(String[] args) {
int[] a = {1, 2, 3};
int[] b = a;
b[0] = 99;
System.out.println(a[0]);
}
}
what will be printed?