Question: 1. What is the result of the following Java code segment? Point p1 = new Point (1,3); Point p2 = new Point(1,3); Point p3=p2; System.out.println(p1=

1. What is the result of the following Java code segment?

Point p1 = new Point (1,3);

Point p2 = new Point(1,3);

Point p3=p2;

System.out.println(p1= =p2); Answer:_____________________

System.out.println(p2= =p3); Answer:_____________________

System.out.println(p1.equals(p3)); Answer:_____________________

System.out.println(p2.equals(p3)); Answer:_____________________

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 Databases Questions!