Question 2 Next you will need to create classes to implement the interface and extend the abstract class, respectively. Create a Circle class that extends AbstractShape. Create the following: • A private double instance variablem radius. • A constructor that takes two parameters (in the order of color, radius). It should use the parameter for radius to set the m_radius instance variable and then explicitly call the parent class constructor using the super keyword and pass in the color parameter. • A method that concretizes the calcArea method of the abstract parent class and calculates the area of the circle. The area of a circle can be calculated as 3.14 x p² (where r is the radius). • A method that concretizes the calcPerimeter method of the abstract parent class and calculates the perimeter of the circle. The perimeter of a circle can be calculated as 2 x 3.14 x r (where r is the radius). Create a Rectangle class that implements the ShapeInterface. Create the following: • A private string instance variable m color. • Two private double instance variables m width and m length. • A constructor that takes three parameters (in the order of color, width, length) and sets them accordingly. • A method that concretizes the calcArea method and calculates the area of the rectangle. The area of a rectangle can be calculated as width x height. - A method that concretizes the calcPerimeter method and calculates the perimeter of the rectangle. The perimeter of a rectangle can be calculated as 2 x (width + height). Don't forget to create a test driver to verify your implementation!

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%
Question 2 Next you will need to create classes to implement the interface and extend the
abstract class, respectively.
Create a Circle class that extends AbstractShape. Create the following.
• A private double instance variable m radius.
• A constructor that takes two parameters (in the order of color, radius). It should use the
parameter for radius to set the m radius instance variable and then explicitly call the parent
class constructor using the super keyword and pass in the color parameter.
• A method that concretizes the calcArea method of the abstract parent class and calculates
the area of the circle. The area of a circle can be calculated as 3.14 x (where r is the radius).
•A method that concretizes the calcPerimeter method of the abstract parent class and
calculates the perimeter of the circle. The perimeter of a circle can be calculated as 2 x 3.14 x r
(where r is the radius).
Create a Rectangle class that implements the ShapeInterface. Create the following:
A private String instance variable m color.
• Two private double instance variables m width and m length.
• A constructor that takes three parameters (in the order of color, width, length) and sets them
accordingly.
•A method that concretizes the calcArea method and calculates the area of the rectangle. The
area of a rectangle can be calculated as width x height.
•A method that concretizes the calcPerimeter method and calculates the perimeter of the
rectangle. The perimeter of a rectangle can be calculated as 2 x (width + height).
Don't forget to create a test driver to verify your implementation!
Transcribed Image Text:Question 2 Next you will need to create classes to implement the interface and extend the abstract class, respectively. Create a Circle class that extends AbstractShape. Create the following. • A private double instance variable m radius. • A constructor that takes two parameters (in the order of color, radius). It should use the parameter for radius to set the m radius instance variable and then explicitly call the parent class constructor using the super keyword and pass in the color parameter. • A method that concretizes the calcArea method of the abstract parent class and calculates the area of the circle. The area of a circle can be calculated as 3.14 x (where r is the radius). •A method that concretizes the calcPerimeter method of the abstract parent class and calculates the perimeter of the circle. The perimeter of a circle can be calculated as 2 x 3.14 x r (where r is the radius). Create a Rectangle class that implements the ShapeInterface. Create the following: A private String instance variable m color. • Two private double instance variables m width and m length. • A constructor that takes three parameters (in the order of color, width, length) and sets them accordingly. •A method that concretizes the calcArea method and calculates the area of the rectangle. The area of a rectangle can be calculated as width x height. •A method that concretizes the calcPerimeter method and calculates the perimeter of the rectangle. The perimeter of a rectangle can be calculated as 2 x (width + height). Don't forget to create a test driver to verify your implementation!
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Reference Types in Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education