Examlex

Solved

Public Abstract Class Shape

question 56

Short Answer

public abstract class Shape
{
private int length;
private int width;
private int height;
____
}
Using the above code, create the statement in the shaded line that will create an abstract calculateArea() method in the abstract Shape class.


Definitions:

Related Questions