Question: What will code output?class A { public int value = 1 0 ; public int getValue ( ) { return value; } } class B
What will code output?class A
public int value ;
public int getValue
return value;
class B extends A
public int value ;
public int getValue
return value;
public class Example
public static void mainString args
A obj new B;
System.out.printlnobjgetValue;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
