Skip to content
Related Articles
Open in App
Not now

Related Articles

Java | Inheritance | Question 2

Improve Article
Save Article
Like Article
  • Difficulty Level : Easy
  • Last Updated : 28 Jun, 2021
Improve Article
Save Article
Like Article




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

(A) Base::show() called
(B) Derived::show() called
(C) Compiler Error
(D) Runtime Error


Answer: (C)

Explanation: Final methods cannot be overridden. See the compiler error here.

Quiz of this Question

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!