Write a program to create a class called ShapeObject and this class contains the below,
1) String data field to called "Color"
2) Default constructor (no-arg) to create an object with "RED" color by default
) An argument constructor to create the object with specified color.
4) A method names toString() that returns the description of the ShapeObject.
Create a class called Triangle that extends from ShapeObject. The class contains:
1) Three double data fields called side1, side2 and side
2) Default constructor (no-arg) that creates default Triangle with (1,1,1)
) An argument constructor to create the object with specified side1, side2 and side values.
4) An argument constructor to create the object with specified side1, side2 and side values and color from parent class.
5) Accessor methods to all three data fields
6) Mutator methods to all three data fields
7) A method called getSemi_Perimeter() that returns Semi_Perimeter of the triangle
8) A method names toString() that returns the description of the Triangle.
Finally create a TestClass to create objects for Triangle class.
Sample Call in Test Program:
Triangle_Object_1 = Triangle()
Semi_Perimeter of Triangle_Object_1 = 1.5
Description of Triangle_Object_1 : Side1 = 1, Side2=1, Side=1 and the color is RED and the Semi_Perimeter is 1.5
Triangle_Object_2 = Triangle(4,5,6)
Semi_Perimeter of Triangle_Object_2 = 7.5
Description of Triangle_Object_2 : Side1 = 4, Side2=5, Side=6 and the color is RED and the Semi_Perimeter is 7.5
Triangle_Object_ = Triangle(2,2,4,"GREEN")
Semi_Perimeter of Triangle_Object_ = 4.0
Description of Triangle_Object_ : Side1 = 2, Side2=2, Side=4 and the color is GREEN and the Semi_Perimeter is 4.0
Hint:
To calculate the Semi_Perimeter of the triangle, use the below formulae,
Semi_Perimeter = (a +b + c) / 2
Submission Requirement:
Please you need to submit your work in word format, and each question should provide the below requirements:
Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.
You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.
Read moreEach paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.
Read moreThanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.
Read moreYour email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.
Read moreBy sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.
Read more
Recent Comments