Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Java | Inheritance | Question 9

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Predict the output of following program. Note that foo() is public in base and private in derived.




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


(A) Base
(B) Derived
(C) Compiler Error
(D) Runtime Error


Answer: (C)

Explanation: It is compiler error to give more restrictive access to a derived class function which overrides a base class function.

Quiz of this Question

My Personal Notes arrow_drop_up
Last Updated : 28 Jun, 2021
Like Article
Save Article
Similar Reads