Question 2: Now you are going to make an accounts class. The class details are as follows: • There is a variable to store the balance that the account holds, e.g. balance. • A default constructor...


Question 2:<br>Now you are going to make an accounts class. The class details are as follows:<br>• There is a variable to store the balance that the account holds, e.g. balance.<br>• A default constructor setting value of balance to 1000.<br>• A member function Credit () which adds the credited amount to the balance.<br>• A member function called debit () which gets money from the account. The debited<br>amount of money is subtracted from the account balance, the debited amount<br>should not be greater than the account balance otherwise a message would be<br>displayed that

Extracted text: Question 2: Now you are going to make an accounts class. The class details are as follows: • There is a variable to store the balance that the account holds, e.g. balance. • A default constructor setting value of balance to 1000. • A member function Credit () which adds the credited amount to the balance. • A member function called debit () which gets money from the account. The debited amount of money is subtracted from the account balance, the debited amount should not be greater than the account balance otherwise a message would be displayed that "Debit amount exceeded account balance" moreover a penalty fee of Rs.15 is charged in case of attempt to withdraw more than balance. • The getBalance () method tells the user that how much balance he has in his асcount. First you have to set balance to your desired value. Credit some amount into account. Withdraw some amount and then check your balance. Withdraw amount more than the available balance.

Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here