Pls screenshot program and check output //Thanls alot __________________________
ID: 3825538 • Letter: P
Question
Pls screenshot program and check output //Thanls alot
___________________________________________________________
Q1: Implement the following "Has-a" relationship. Circle radius double 1.0 color:String red +Circle() +Circle(radius double) +get Radius(): double +getArea(): double +toString ():String superclass subclass cylinder height double 1.0 +cylinder +cylinder (radius:double) +cylinder (radius double, height:double) +getHeight(): double double Q 2: Write an AWT GUI application called AWTAccumulator, which has four components: 1. a java awt Label "Enter an integer and press enter 2. an input java.awt TextField: 3. a java awt Label "The accumulated sum is", and 4. a protected (read-only) ava awt TextField for displaying the accumulated sum. Frame e AWT Accumulator Enter an integer al 123 Accumulated su Text Field Label Text Field (Component) (Component) (Component) Source of ActionEvent non-editableExplanation / Answer
class P { public void m1() {} } class C extends P { public void m2() {} } class Test { public static void main (String [] args) { P p = new P(); p.m1(); p.m2(); C c = new C(); c.m1(); c.m2(); P p = new C(); p.m1(); p.m2(); C c = new P(); } }