Name:
Definitions: please explain the following terms:
II. Questions or short essay
III. Programming Exercise
Create a class named Circle with fields named radius, area, and diameter. Include a constructor that sets the radius to 1. Also include public methods named SetRadius(), GetDiam(), GetArea(), ComputeDiameter(), which computes a circle's diameter, and ComputeArea(), which computes a circles' area. (The diameter of a circle is twice the radius. The area of a circle is Pi (3.14) times the square of the radius.)
.