A subclass of Value, LargerValue, is defined with a getValue method that returns twice the value of the parent. Which line is the body of LargerValue's getValue method?

Respuesta :

Answer:

return super.getValue() * 2;

suppose the class Value is partially defined below

public class Value

{

private int number;

public int getValue()

{

return number;

}

}

Explanation:

see Answer