Question: In C++ using namespace std; a. Define the class bankAccount to store a bank c ustomers account number and balance. Suppose that account number is
In C++ using namespace std;
a. Define the class bankAccount to store a bank customers account number and balance. Suppose that account number is type int, and balance is of type double. Your class should, at least, provide the following operations: set the account number, retrieve the account number, retrieve the balance, deposit and withdraw money, and print account information. Add appropriate constructors.
b. Every bank offers a checking account. Derive the class checkingAccount from the class bankAccount (designed in part a). This class inherits members to store the account number and the balance form the base class. A customer with a checking account typically receives interest, maintains a minimum balance, and pays service charges if the balance falls below the minimum. Add member variables to store this additional information. In addition to the operations inherited from the base class, this class provide the following operations: set interest rate, retrieve interest rate, set minimum balance, retrieve minimum balance, set service charges, retrieve service charges, post interest, verify if the balance is less than the minimum, write a check, withdraw (override the method of the base class), and print account information. Add appropriate constructors.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
