A

Admin • 833K Points
Coach

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

class Parent {
int x = 10;
}
class Child extends Parent {
int x = 20;
void display() {
System.out.println(super.x + " " + x);
}
}
public class Main {
public static void main(String[] args) {
Child obj = new Child();
obj.display();
}
}

  • (A) Runtime exception
  • (B) Compilation error
  • (C) 20 10
  • (D) 10 20
  • Correct Answer - Option(D)
  • Views: 27
  • Filed under category Java
  • Hashtags:

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.