Look at the following class declarations and answer the questions that follow them:

a) Which class is the superclass? Which class is the subclass?
b) Draw a UML diagram showing the relationship between these two Classes.
c) When a Circle object is created, What are its public members?
d) What members of the Shape class are not accessible to the Circle class’s methods?
e) Assume a program has the following declarations:
Shape s = new Shape();Circle c = new Circle();Indicate whether the following statements are legal or illegal:
c.setRadius(10.0);s.setRadius(10.0);System.out.printIn(c.getArea());System.out.println(s.getArea());
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.