✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
У програмі описаний клас:
class A {
int x;
int y;
}
Що буде виведено на екран в результаті виконання наступного фрагмента програми?A x = new A ();
System.out.print (x.x + " " + x.y);