✅ 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;
p1 = p;
p = null;
System.out.println (p1.x);
(Java)