Java - Inheritance
What will be the output of the following Java code?
class Test {
Test() {
this(5);
System.out.print("A");
}
Test(int x) {
System.out.print("B");
}
public static void main(String[] args) {
new Test();
}
}