✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class abc.Point {
abc.Point (int a, int b) {
x = a;
y = b;
}
int x, y;
...
}
Вкажіть результат виконання наступного фрагмента коду:
abc.Point p = new abc.Point (5,3), p1;
System.out.println (p1 = = p);
(Java)