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
Get step-by-step solutions from verified subject matter experts
