Looking for Програмування мовою Java test answers and solutions? Browse our comprehensive collection of verified answers for Програмування мовою Java at moodle.chnu.edu.ua.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
1 ...
2 int a, b;
3 void show () {
4 System.out.print (a);
5 System.out.print (b);
6}
7}
(Java)
abstract void showDate(String str);
Які нижчеперелічені фрагменти коду допустимі?
1 class A {
2 int a;
3 A (int x) {
4 a = x;
5 }
6 }
7 class B extends A {
8 int b;
9 B (int x) {
10 super (x);
11 b = x;
12 }
13 }
Виконання програми завершилося помилкою. Яка зміна необхідно внести, щоб виключити помилку?
int a = 12;
try {
int i = 4;
while (i> 0) {
System.out.print (a / i);
i--;
}
}
finally {
System.out.print (i);
}
(Java)