Are you taking CLEP classes? Try clep.ai
| preferred AP College board partner for AP classes
medium Solved by 3 students

Method Overriding and Super Keyword

< Prev
Next >

What is printed when the main method of the Child class is executed?

public class Parent {
    public String shout() { return "Hello"; }
}

public class Child extends Parent {
    public String shout() { return super.shout() + " World"; }
    
    public static void main(String[] args) {
        System.out.println(new Child().shout());
    }
}
A

Hello World

B

Hello

C

World

D

HelloHello

Hint
Did You Know?
Explain Why
Explain All Answers
Check Answer
Show Correct Answer
Report Question
Mark for review

Question Leaderboard

Not enough data yet to show leaderboard.

No comments yet. Be the first to comment!

AI Tutor

How can I help?

APFIVE © 2020.
Email: apfive@apfive.org|Privacy Policy|FAQ