✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
1 class A {
2 private int a;
3}
4 class B extends A {
5 int b;
6 B () {
7 super ();
8 b = 0;
9 }
10 }
Виконання програми завершилося помилкою. Які зміни можуть бути внесені для виключення помилки?