1.

class Base {public final void show() {System.out.println("Base::show() called");}}class Derived extends Base {public void show() {System.out.println("Derived::show() called");}}public class Main {public static void main(String[] args) {Base b = new Derived();;b.show();}}(A) Derived::show() called(B) Base::show() called(C) Compiler Error(D) Exception

Answer»


Discussion

No Comment Found