What is the type of relationship that exists between classes IShape and Rectangle?
Pizza - price: double + getPrice(): double + getShape(): IShape <<create>> + Pizza(p: double): IShape + toString(): String
<<interface>> IShape - getArea(): double
has-a
ag question
Circle - radius: double <<create>> + Circle(radius: double) + toString(): String
Rectangle - height: double width: double <<create>> + Rectangle(double w, double h) + toString(): String
Select one: O a. Inheritance
Ob. Realization Oc. Dependency O d. Aggregation