S

Sandhya Thakur • 4.08K Points
Extraordinary

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

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

  • (A) Compilation error
  • (B) Child
  • (C) Runtime exception
  • (D) Parent
  • Correct Answer - Option(D)
  • Views: 13
  • 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.


Question analytics