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!
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
Related questions
Question
100%
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 2 steps
Knowledge Booster
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.Recommended textbooks for you
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)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
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)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education