Given classes A, B, and C, where B extends A, and C extends B, and where all

Question:

Given classes A, B, and C, where B extends A, and C extends B, and where all classes implement the instance method void doIt(), how can the doIt()

method in A be called from an instance method in C?

Select the one correct answer.

(a) doIt();

(b) super.doIt();

(c) super.super.doIt();

(d) this.super.doIt();

(e) A.this.doIt();

(f) ((A) this).doIt();

(g) It is not possible.

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question
Question Posted: