✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class A {
...
}
class B extends A {
...
}
class C extends B {
...
}
public class MyClass {
public static void main (String args []) {
A x1 = new A ();
B x2 = new B ();
C x3 = new C ();
...
}
}