Q26
What is the result of the following code snippet?class Parent static void display() System.out.println("Parent"); class Child extends Parent public static void main(String[] args) Child obj = new Child(); obj.display();
A.
Runtime exception
B.
Compilation error
C.
Child
D.
Parent
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board