✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
abstract class A {
abstract void method (int a, int b);
}
class B extends A {
int x;
int y;
void method (int a, int b) {
x = a;
y = b;
}
}
Які нижчеперелічені фрагменти коду допустимі?