✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
public class Test {
public static void main(String[] args) {
new B();
}
}
class A {
static { System.out.print(1); }
A() { System.out.print(2); }
}
class B extends A {
static { System.out.print(3); }
}
що він виведе?