Java | Functions | Question 9

Last Updated :
Discuss
Comments
Predict the output of the following program. Java
 class Test
{

    public static void main(String[] args)
    {
        String obj1 = new String("geeks");
        String obj2 = new String("geeks");

        if(obj1.hashCode() == obj2.hashCode())
            System.out.println("hashCode of object1 is equal to object2");

        if(obj1 == obj2)
            System.out.println("memory address of object1 is same as object2");

        if(obj1.equals(obj2))
            System.out.println("value of object1 is equal to object2");
    }
}
hashCode of object1 is equal to object2
value of object1 is equal to object2
hashCode of object1 is equal to object2
memory address of object1 is same as object2
value of object1 is equal to object2
memory address of object1 is same as object2
value of object1 is equal to object2
Share your thoughts in the comments