S

Sonali Mishra • 4.53K Points
Extraordinary

Q. What is the result of the following code snippet?

class Parent {
protected void display() {
System.out.println("Parent");
}
}
class Child extends Parent {
void show() {
display();
}
}
public class Main {
public static void main(String[] args) {
Child obj = new Child();
obj.show();
}
}

  • (A) Compilation error
  • (B) Runtime exception
  • (C) Child
  • (D) Parent
  • Correct Answer - Option(D)
  • Views: 25
  • Filed under category JAVA

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.


Question analytics