✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що передбачено реалізацією стрічки super.i = a; в наведеному фрагменті коду:
class A {
int i;
}
class B extends A {
int i
B (int a, int b){
super.i = a;
i = b;
}
}