Question

What is the output of the following code? class parent { public void someFunction() { System.out.println("Parent...

What is the output of the following code?
class parent {
public void someFunction() {
System.out.println("Parent Function");
}
}
public class child extends parent {
public void someFunction() {
System.out.println("Child Function");
}
public static void main(String args) {
parent p1 = new parent();
parent p2 = new child();
child c1 = new child();
p1.someFunction();
p2.someFunction();
c1.someFunction();
}
}
0 0
Add a comment Improve this question Transcribed image text
Request Professional Answer

Request Answer!

We need at least 10 more requests to produce the answer.

0 / 10 have requested this problem solution

The more requests, the faster the answer.

Request! (Login Required)


All students who have requested the answer will be notified once they are available.
Know the answer?
Add Answer to:
What is the output of the following code? class parent { public void someFunction() { System.out.println("Parent...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT