.Create a complete UML diagram which shows the relationships between the three classes, Account, Savings, and Checkingand all of the fields and methods in each. The only modificationsrequired to the Account class is the addition of two abstract methodscalled closeMonth and accountString.2.The closeMonth function performs the appropriate end of month action for its class.3.The accountString function returns a string which indicates the type of account, the account number, and the current balance, like –Checking account #1 has a balance of $402.254.The Savings and Checking classes inherit the account number and balance variables along with the functions from the Account class.5.The Savings and Checking classes each have a minimum balance variable and an annual interest rate (or monyhly fee). They need constructors andconcrete implementations of the closeMonth and accountString functions. 6.I recommend using Raptor’s Object Oriented Mode to do this, but you may do it in Word, PowerPoint, or Visio.7.For this assignment only the UML diagram is required. Lab #7 will require studentsto implement these classes along with a main program.New CommandsLike Lab #5, Lab #7 will read commands from a file. The UML diagram for Lab #6 should include all of the variables and functions necessary to implement these commands.Checking account initialBalance minimumBalance monthlyFeeSavings account initialBalance minimumBalance annualInterestRateDeposit account amount Withdraw account amountBalance accountCloseReportIn the above commands, account is an integer between 1 and 9. All other arguments are doubles.The close command performs the end of month functions for every existing account. The only output it produces is an “End of month processing complete” message.The Report command lists all existing accounts and their balances, like –Checking account #1 has a balance of $402.25Savings account #2 has a balance of $53576.35
OOPs
In today's technology-driven world, computer programming skills are in high demand. The object-oriented programming (OOP) approach is very much useful while designing and maintaining software programs. Object-oriented programming (OOP) is a basic programming paradigm that almost every developer has used at some stage in their career.
Constructor
The easiest way to think of a constructor in object-oriented programming (OOP) languages is:
Inheritance and PolymorphismThis assignment starts with the Account class from Labs 4 and 5.Our new and improved bank has two kinds of accounts, savings, and checking. In addition to an ID and a balance, savings accounts have an annual interest rate and a minimum balance. Checking accounts have a minimum balance and a monthly fee. Withdrawals and deposits can be made to both kinds of accounts. At the end of each month, savings accounts pay interest, but only if the account’s balance is above the minimum. Also at the end of each month,a fee is deducted from each checking account, but the fee is waived if the account’s balance is over the minimum. Tasks1.Create a complete UML diagram which shows the relationships between the three classes, Account, Savings, and Checkingand all of the fields and methods in each. The only modificationsrequired to the Account class is the addition of two abstract methodscalled closeMonth and accountString.2.The closeMonth function performs the appropriate end of month action for its class.3.The accountString function returns a string which indicates the type of account, the account number, and the current balance, like –Checking account #1 has a balance of $402.254.The Savings and Checking classes inherit the account number and balance variables along with the functions from the Account class.5.The Savings and Checking classes each have a minimum balance variable and an annual interest rate (or monyhly fee). They need constructors andconcrete implementations of the closeMonth and accountString functions. 6.I recommend using Raptor’s Object Oriented Mode to do this, but you may do it in Word, PowerPoint, or Visio.7.For this assignment only the UML diagram is required. Lab #7 will require studentsto implement these classes along with a main program.New CommandsLike Lab #5, Lab #7 will read commands from a file. The UML diagram for Lab #6 should include all of the variables and functions necessary to implement these commands.Checking account initialBalance minimumBalance monthlyFeeSavings account initialBalance minimumBalance annualInterestRateDeposit account amount
Withdraw account amountBalance accountCloseReportIn the above commands, account is an integer between 1 and 9. All other arguments are doubles.The close command performs the end of month functions for every existing account. The only output it produces is an “End of month processing complete” message.The Report command lists all existing accounts and their balances, like –Checking account #1 has a balance of $402.25Savings account #2 has a balance of $53576.35
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images