✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
¿Cuál es el resultado de este código?
class A {
A() {
System.out.print("A");
}
}
class B extends A {
B() {
System.out.print("B");
}
}
class C extends B {
C() {
System.out.print("C");
}
}
public class Test {
public static void main(String[] args) {
new C();
}
}