Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in java please Concept Summary: 1. Inheritance 2. Over-riding methods 3. Instantiating objects 4. Fundamental Class Concepts. 5. Using your IDE to generate UML diagrams.

in java please

image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribed

Concept Summary: 1. Inheritance 2. Over-riding methods 3. Instantiating objects 4. Fundamental Class Concepts. 5. Using your IDE to generate UML diagrams. Objective: In this lab, you'll be creating software for the world's smallest bank. This bank can have only one customer. The customer will have a checking account and a savings account. The account types have some specific rules: Checking Accounts: Allows unlimited deposits and withdrawals for free. Provides no interest payments. If the account balance ever drops below $0, the customer is charged a $20 overdraft fee. Saving Accounts: Must maintain a $500 balance at all times, otherwise the customer is charged $10 each time they make a withdrawal that lowers their balance below $500. Earns 1.5% interest every year The first 5 deposits are free, after that there is a fee of $10 per deposit. You'll provide the bank teller with a simple menu which will allow them to make changes to their customer's accounts. You'll use your IDE to generate UML diagrams of your classes. See UML section below. Account Numbers: Each account will have an account number. You should use a static variable to keep track of the next account number. At the start set this number to 10001. In your driver you'll create a Checking account, and a Savings account. The checking account will end up with a account_number of 10001, while the Savings account will end up with an account_number of 10002. Classes: Create a class called Account. This will hold things that are true for all account types. Be sure to include at least: O An attribute which will hold the account number. O An attribute which will hold the account balance. (e.g. $500.22) O A constructor method which opens the account with a balance of 0. It should set the account number using the static variable described above. An overloaded constructor which opens the account with a specific amount which is passed to the constructor. It should set the account number using the static variable described above. o Getter method for accessing the account_number. Getter/Setter method for accessing the account balance. A withdrawal method which takes a parameter of the amount to be withdrawn and deducts it from the balance. A deposit method which takes a parameter of the amount to be deposited and adds it to the balance. Create a class called Checking which should inherit from Account. You will need an appropriate constructor to set the account balance. o Modify the withdrawal method you inherited to check for the condition where they try to overdraft their account. o o o If an overdraft condition occurs you should print out Charging an overdraft fee of $20 because account is below $0" | Deduct $20 from their balance. Create a class called Savings which should inherit from Account. You will need an appropriate constructor to set the account balance. o Modify the withdrawal method so it implements the rules about dropping below $500 If they drop below $500, you should print Charging a fee of $10 because you are below $500" I Deduct $10 from their balance. o Modify the deposit method so it implements the charge for more than 5 deposits. As you do the deposit you should print This is deposit 1 to this account, where 1 would be updated to reflect what number deposit this is. If you are doing the 6th or later deposit, print Charging a fee of $10, and deduct $10 from their balance. Add a method which adds 1.5% interest to the account. (This method will be called by the teller manually once per year). Print out how much the customer earned in interest as follows "Customer earned 15.25 in interest". Of course it should reflect the actual amount. Add the interest earned to their balance. o 1 All classes should be created with appropriate encapsulation. i.e. account balances and account numbers should be private and only accessible via getters/setters. Don't worry if the formatting of the dollar figures. Ie, sometimes the interest will be 2.585828225 and that's ok. Likewise sometimes the balance will be 100.5 and that's ok for this lab. Driver: Create a driver class which creates a checking and savings account. Then keep prompting the user with the following menu until they quit: 1. Withdraw from Checking 2. Withdraw from Savings 3. Deposit to Checking 4. Deposit to Savings 5. Balance of Checking 6. Balance of Savings 7. Award Interest to Savings now 8. Quit Each menu choice should prompt the user as appropriate to do what it says. i.e. if the user selects Deposit to Checking, they should be prompted for the amount. See sample output below. UML Diagrams: As you learned in lecture UML diagrams allow people to draw complex programs in a graphical way. It shows all the attributes and methods in each class, as well as the relationships between the classes. Often in your job you'll have to draw UML on a whiteboard, or update the docs to reflect your changes. Thankfully, there are also tools for generating UML. In this lab you'll be using those tools to create UML diagrams of what you coded today. Sample Output: 1. Withdraw from Checking 2. Withdraw from Savings 3. Deposit to Checking 4. Deposit to Savings 5. Balance of Checking 6. Balance of Savings 7. Award Interest to Savings now 8. Quit 3 How much would you like to deposit into Checking? 50 Doing default deposit 1. Withdraw from Checking 2. Withdraw from Savings 3. Deposit to Checking 4. Deposit to Savings 5. Balance of Checking 6. Balance of Savings 7. Award Interest to Savings now 8. Quit 1 How much would you like to withdraw from Checking? 30 1. Withdraw from Checking 2. Withdraw from Savings 3. Deposit to Checking 4. Deposit to Savings 5. Balance of Checking 6. Balance of Savings 7. Award Interest to Savings now 8. Quit Concept Summary: 1. Inheritance 2. Over-riding methods 3. Instantiating objects 4. Fundamental Class Concepts. 5. Using your IDE to generate UML diagrams. Objective: In this lab, you'll be creating software for the world's smallest bank. This bank can have only one customer. The customer will have a checking account and a savings account. The account types have some specific rules: Checking Accounts: Allows unlimited deposits and withdrawals for free. Provides no interest payments. If the account balance ever drops below $0, the customer is charged a $20 overdraft fee. Saving Accounts: Must maintain a $500 balance at all times, otherwise the customer is charged $10 each time they make a withdrawal that lowers their balance below $500. Earns 1.5% interest every year The first 5 deposits are free, after that there is a fee of $10 per deposit. You'll provide the bank teller with a simple menu which will allow them to make changes to their customer's accounts. You'll use your IDE to generate UML diagrams of your classes. See UML section below. Account Numbers: Each account will have an account number. You should use a static variable to keep track of the next account number. At the start set this number to 10001. In your driver you'll create a Checking account, and a Savings account. The checking account will end up with a account_number of 10001, while the Savings account will end up with an account_number of 10002. Classes: Create a class called Account. This will hold things that are true for all account types. Be sure to include at least: O An attribute which will hold the account number. O An attribute which will hold the account balance. (e.g. $500.22) O A constructor method which opens the account with a balance of 0. It should set the account number using the static variable described above. An overloaded constructor which opens the account with a specific amount which is passed to the constructor. It should set the account number using the static variable described above. o Getter method for accessing the account_number. Getter/Setter method for accessing the account balance. A withdrawal method which takes a parameter of the amount to be withdrawn and deducts it from the balance. A deposit method which takes a parameter of the amount to be deposited and adds it to the balance. Create a class called Checking which should inherit from Account. You will need an appropriate constructor to set the account balance. o Modify the withdrawal method you inherited to check for the condition where they try to overdraft their account. o o o If an overdraft condition occurs you should print out Charging an overdraft fee of $20 because account is below $0" | Deduct $20 from their balance. Create a class called Savings which should inherit from Account. You will need an appropriate constructor to set the account balance. o Modify the withdrawal method so it implements the rules about dropping below $500 If they drop below $500, you should print Charging a fee of $10 because you are below $500" I Deduct $10 from their balance. o Modify the deposit method so it implements the charge for more than 5 deposits. As you do the deposit you should print This is deposit 1 to this account, where 1 would be updated to reflect what number deposit this is. If you are doing the 6th or later deposit, print Charging a fee of $10, and deduct $10 from their balance. Add a method which adds 1.5% interest to the account. (This method will be called by the teller manually once per year). Print out how much the customer earned in interest as follows "Customer earned 15.25 in interest". Of course it should reflect the actual amount. Add the interest earned to their balance. o 1 All classes should be created with appropriate encapsulation. i.e. account balances and account numbers should be private and only accessible via getters/setters. Don't worry if the formatting of the dollar figures. Ie, sometimes the interest will be 2.585828225 and that's ok. Likewise sometimes the balance will be 100.5 and that's ok for this lab. Driver: Create a driver class which creates a checking and savings account. Then keep prompting the user with the following menu until they quit: 1. Withdraw from Checking 2. Withdraw from Savings 3. Deposit to Checking 4. Deposit to Savings 5. Balance of Checking 6. Balance of Savings 7. Award Interest to Savings now 8. Quit Each menu choice should prompt the user as appropriate to do what it says. i.e. if the user selects Deposit to Checking, they should be prompted for the amount. See sample output below. UML Diagrams: As you learned in lecture UML diagrams allow people to draw complex programs in a graphical way. It shows all the attributes and methods in each class, as well as the relationships between the classes. Often in your job you'll have to draw UML on a whiteboard, or update the docs to reflect your changes. Thankfully, there are also tools for generating UML. In this lab you'll be using those tools to create UML diagrams of what you coded today. Sample Output: 1. Withdraw from Checking 2. Withdraw from Savings 3. Deposit to Checking 4. Deposit to Savings 5. Balance of Checking 6. Balance of Savings 7. Award Interest to Savings now 8. Quit 3 How much would you like to deposit into Checking? 50 Doing default deposit 1. Withdraw from Checking 2. Withdraw from Savings 3. Deposit to Checking 4. Deposit to Savings 5. Balance of Checking 6. Balance of Savings 7. Award Interest to Savings now 8. Quit 1 How much would you like to withdraw from Checking? 30 1. Withdraw from Checking 2. Withdraw from Savings 3. Deposit to Checking 4. Deposit to Savings 5. Balance of Checking 6. Balance of Savings 7. Award Interest to Savings now 8. Quit

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Theory Icdt 97 6th International Conference Delphi Greece January 8 10 1997 Proceedings Lncs 1186

Authors: Foto N. Afrati ,Phokion G. Kolaitis

1st Edition

3540622225, 978-3540622222

More Books

Students also viewed these Databases questions

Question

3. Identify cultural universals in nonverbal communication.

Answered: 1 week ago

Question

2. Discuss the types of messages that are communicated nonverbally.

Answered: 1 week ago