Question: If the Point class doesn't override the equals ( ) method in the Object class, what will the following code do Point pl = new

If the Point class doesn't override the equals() method in the Object class, what will the following code do
Point pl = new Point (3,4);
Point p2= new Point (3,4);
System.out.println(p1.equals(p2));
Cause a compile-time error since the equals() method doesn't exist in the Point class
Cause a compile-time error since the equals() method can't accept a Point object
Print "true" to the console
Print "false" to the console
If the Point class doesn't override the equals (

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!