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

Related Articles

Java | Class and Object | Question 5

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

Predict the output of the following program.




   
class First
{
  
    void display()
    {
        System.out.println("Inside First");
    }
}
  
class Second extends First
{
  
    void display()
    {
        System.out.println("Inside Second");
    }
}
  
  
class Test
{
  
    public static void main(String[] args)
    {
        First obj1 =  new First();
        Second obj2 =  new Second();
  
        First ref;
        ref = obj1;
        ref.display();
  
        ref = obj2;
        ref.display();
    }
}

(A) Compilation error
(B)

Inside First
Inside Second

(C)

Inside First
Inside First

(D) Runtime error


Answer: (B)

Explanation: ‘ref’ is a reference variable which obtains the reference of object of class First and calls its function display().
Then ‘ref’ refers to object of class Second and calls its function display().


Quiz of this Question

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