1.

Output of following Java program?class Test{public static void main (String[] args){int arr1[] = {1, 2, 3};int arr2[] = {1, 2, 3};if (arr1 == arr2)System.out.println("Same");elseSystem.out.println("Not same");}}(A) Same(B) Not Same

Answer»


Discussion

No Comment Found

Related InterviewSolutions