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

Related Articles

Java | Inheritance | Question 1

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

Output of following Java Program?




class Base {
    public 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


Answer: (A)

Explanation: In the above program, b is a reference of Base type and refers to an object of Derived class.

In Java, functions are virtual by default. So the run time polymorphism happens and derived fun() is called.

Quiz of this Question

My Personal Notes arrow_drop_up
Last Updated : 09 Jul, 2021
Like Article
Save Article
Similar Reads