Question: Consider the classes shown below: public class Parent { public int getValue() { return 24; } public void display() { System.out.print(getValue() + ); }
Consider the classes shown below: public class Parent { public int getValue() { return 24; } public void display() { System.out.print(getValue() + " "); } } public class Child extends Parent { public int getValue() { return -7; } } Using the classes above, what is the output of the following lines of code? Child kid = new Child(); Parent adult = new Parent(); kid.display(); adult.display(); a) 24 24 b) -7 -7 c) -7 24 d) 24 -7 e) A runtime error is thrown
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
