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