✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Який буде результат компіляції та виконання фрагмента коду:
class MyClass4 {
public static void main(String[] args) {
int a[] = {1, 2, 053, 4};
int b[][] = {{1, 2, 4}, {2, 2, 1}, {0, 43, 2}};
System.out.print(a[3] == b[0][2]);
System.out.print(“ ” + (a[2] == b[2][1]));
}
}