Question 28
|
What is displayed when the following is executed? class Parent { private void method1() { System.out.println("Parent's method1()"); } public void method2() { System.out.println("Parent's method2()"); method1(); } } class Child extends Parent { public void method1() { System.out.println("Child's method1()"); } public static void main(String args[]) { Parent p = new Child(); p.method2(); } }
|
||
| Compile time error | ||
| Run time error | ||
|
prints : Parent's method2()
Parent's method1() |
||
|
prints : Parent's method2()
Child's method1() |
||
Back to beginning | Next Question |
||
