Skip to content
Related Articles
Open in App
Not now

Related Articles

Java | Arrays | Question 6

Improve Article
Save Article
  • Last Updated : 28 Jun, 2021
Improve Article
Save Article

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");
        else
            System.out.println("Not same");
    }
}


(A) Same
(B) Not Same


Answer: (B)

Explanation: See https://www.geeksforgeeks.org/compare-two-arrays-java/

Quiz of this Question

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!