C++ Program 1. Design a class that manages a Pet Food Company's quarterly summarized activity. It should contain the following: ( This is all private data and should be coded with the proper C/C++ naming convention ) Company Name - char[40] // This is a static member Quarter - int // This is a static member. Validate to be 1-4 in the setter methodDivision Name         - char[40] Bonus Budget Rate - float - set to 0.02 Total Sales - floatTotal Expenses - float 1a. Create a public method named netIncome() which will return total sales - total expenses as float. 2. Create public class methods (Setters and Getters) that load the data values. 3. Do not create getter/setter methods for the BonusBudgetRate item. It can be set in a constructor or initialized to the default value of 0.02. There is no other reference to it. 4. This class needs a header file and a corresponding cpp file. 5. Create a 'driver' program that contains the main() method and includes the header file for PetFoodCompany class.    In the driver program, create an instance of the object PetFoodCompany and name this instance to indicate it is about dog food.    Set the Quarter to 1 and the Company Name to a name of your choosing. Set the Division Name to "Alpo" or something similar.   Display the Company Name, Division Name, and Quarter values Prompt for total sales and total expenses for this object For this instance - display the Company Name, Quarter, Division Name and result of netIncome(). Create a 2nd instance of the object PetFoodCompany and name this instance related to cat food. Set the Division Name to "Purina" or something similar. Prompt for total sales and total expenses for this object For this instance - display the Company Name, Quarter, Division Name and result of netIncome(). Note: Because the items CompanyName and Quarter are declared static - they only need to be set once. Below is example output: Company Name is myCompanyName Current Quarter is 1Division Name is Alpo Current Quarter is 1 Enter Total Sales: 1000 Enter Total Expenses: 600 Net Income = 400   Company Name is myCompanyName Current Quarter is 1Division Name is Purina Enter Total Sales: 1000 Enter Total Expenses: 600 Net Income = 400       The deliverable is a working program (CPPs & H files) and a UML diagram of the this class.

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

C++ Program

1. Design a class that manages a Pet Food Company's quarterly summarized activity. It should contain the following:

( This is all private data and should be coded with the proper C/C++ naming convention )

Company Name - char[40] // This is a static member Quarter - int // This is a static member. Validate to be 1-4 in the setter methodDivision Name         - char[40]
Bonus Budget Rate - float - set to 0.02
Total Sales - floatTotal Expenses - float

1a. Create a public method named netIncome() which will return total sales - total expenses as float.

2. Create public class methods (Setters and Getters) that load the data values.

3. Do not create getter/setter methods for the BonusBudgetRate item. It can be set in a constructor or initialized to the default value of 0.02. There is no other reference to it.

4. This class needs a header file and a corresponding cpp file.

5. Create a 'driver' program that contains the main() method and includes the header file for PetFoodCompany class.

   In the driver program, create an instance of the object PetFoodCompany and name this instance to indicate it is about dog food.    Set the Quarter to 1 and the Company Name to a name of your choosing.
Set the Division Name to "Alpo" or something similar.   Display the Company Name, Division Name, and Quarter values
Prompt for total sales and total expenses for this object
For this instance - display the Company Name, Quarter, Division Name and result of netIncome().

Create a 2nd instance of the object PetFoodCompany and name this instance related to cat food.
Set the Division Name to "Purina" or something similar. Prompt for total sales and total expenses for this object For this instance - display the Company Name, Quarter, Division Name and result of netIncome().

Note: Because the items CompanyName and Quarter are declared static - they only need to be set once.

Below is example output:

Company Name is myCompanyName
Current Quarter is 1
Division Name is Alpo
Current Quarter is 1
Enter Total Sales: 1000
Enter Total Expenses: 600
Net Income = 400


 
Company Name is myCompanyName
Current Quarter is 1
Division Name is Purina
Enter Total Sales: 1000
Enter Total Expenses: 600
Net Income = 400


 
 
 
The deliverable is a working program (CPPs & H files) and a UML diagram of the this class.
 
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 9 steps with 5 images

Blurred answer
Knowledge Booster
Data members
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
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