Question: when i run this code i get what but not sure why please explain why? What do you think is the result of the following
What do you think is the result of the following code? int[] x = new int [1]; x[0] = 10; int[] y = new int [1]; y [0] = x[0]; if (x == y) { System.out.println("Equal."); } else { System.out.println("What?")
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
