logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Janet FearnleyPsychology
(4/5)

643 Answers

Hire Me
expert
Ata WhbaLaw
(5/5)

729 Answers

Hire Me
expert
Bhargav AppasaniiEngineering
(/5)

666 Answers

Hire Me
expert
Timotius AlbertMathematics
(/5)

986 Answers

Hire Me
C++ Programming

Develop a C++ class declaration called SavingsAccount class that allows user to input initial values of dollars and cents and then asks for deposits and withdrawals.

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

 Computer Science II Laboratory One

Pre-Lab

Redefine CDAccount from Display 10.1 to be a class rather than structure. Use the same member variables as in Display 10.1 but make them private. Include member functions for each of the following:

  • to return initial balance

  • to return balance at maturity

  • to return interest rate

  • to return the term

  • default constructor

  • constructor to set all the member variables to any specified values

  • input function (istream&);

  • output function (ostream&);

 

Embed your class definition in a test program. Sample output:

CD Account interest rate: 10

CD Account initial balance: 100

CD Account balance at maturity is: 105 CD Account term is: 6 months

when your CD matures in 6 months it will have a balance of 105.00

 

Enter CD initial balance, interest rate, and term: 200

10

12

CD Account interest rate: 10.00

CD Account initial balance: 200.00

CD Account balance at maturity is: 220.00 CD Account term is: 12 months

when your CD matures in 12 months it will have a balance of 220.00

 

Problem Description: SavingsAccount

Develop a C++ class declaration called SavingsAccount class that allows user to input initial values of dollars and cents and then asks for deposits and withdrawals. The class should include the following information:

Operations (Member Functions)

 

  1. Default constructor that sets both dollars and cents to

  2. The constructor has 2 parameters that set dollars and cents to the indicated

  3. Open account (with an initial deposit). This is called to put initial values in dollars and cents.

  4. Make a deposit. A function that will add value to dollars and cents

  5. Make a withdrawal. A function that will subtract values form dollars and

  6. Show current balance. A function that will print dollars and cents. Give the implementation code for all the member

Data (Member Data)

 

  1. Dollars

  2. Cents

Have the code generate two objects:

  • bank1: has its values set during definition by the user

  • bank2: uses the default

Have the code input deposit and withdraws for both bank1 and bank 2.

Note: you must perform normalization in cents. This means that if cents is 100 or more, it must increment dollars by the appropriate amount.

Example:

If cents is 234, then dollars must be increased by 2 and cents reduced to 34.

Write code that will create an object called bank1. The code will ten initially place $200.50 in the account. The code will deposit $40.50 and then withdraw $100.98. It will print out the final value of dollars and cents.

The following output should be produced:

dollars = 140 cents = 2

Post-Lab: Employee Class

 Write a class named Employee that has the following member variables:

  • A string that holds the employee’s name.

  • An int variable that holds the employee’s ID number.

  • A string that holds the name of the department where the employee works.

  • A string that holds the employee’s job title.

 

The class should have the following constructors:

  • A constructor that accepts the following values as arguments and assigns them to the appropriate member variables: employee’s name, employee’s ID number, department, and

  • A constructor that accepts the following values as arguments and assigns them to the appropriate member variables: employee’s name and ID number. The department and position fields should be assigned an empty string ("").

  • A default constructor that assigns empty strings ("") to the name, department, and position member variables, and 0 to the idNumber member

Write appropriate mutator functions that store values in these member variables and accessor functions that return the values in these member variables. Once you have written the class, write a separate program that creates three Employee objects to hold the following data.

The program should store this data in the three objects and then display the data for each employee on the screen

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. This  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme