Question: Create a project named Bank_YourLastName on Netbeans Have a driver class named Driver which will have the main method Create an abstract class named Account

Create a project named Bank_YourLastName on Netbeans Have a driver class named Driver which will have the main method Create an abstract class named Account in a separate file. It has the properties account number, balance, date created. It will also have the abstract methods deposit and withdraw. Create a concrete subclass for checking account in a separate fle. It will extend the Account abstract class. Create a concrete subclass for savings account in a separate file. It will extend the Account abstract class. Implement the following constructors for both checking and savings account classes. Constructors need to initialize the account number, balance and date created values. A constructor that creates an account with the specified account number. A constructor that creates an account with the specified account number and balance. Add the annual interest only to the savings account class. Add the accessor (get) and mutator (set) methods for an account number, balance, annual interest (only to savings account). Add annual interest rate property to the savings account. Add the accessor method for date created Add the following to the savings account: A method that returns mountly interest rate by dividing the annual interest by 12 A method that returns monthly interest by multiplying balance and mountly rate
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
