Question: NEED TO BE IN C# PROGRAMMING LANGUAGE Task #2 Creating a Second Subclass 1. Create a new class called SavingsAccount that extends BankAccount 2. It
NEED TO BE IN C# PROGRAMMING LANGUAGE




Task #2 Creating a Second Subclass 1. Create a new class called SavingsAccount that extends BankAccount 2. It should contain an instance variable called rate that represents the annual interest rate. Set it equal to 2.5% 3. It should also have an instance variable called savingsNumber, initialized to 0. In this bank, you have one account number, but can have several savings accounts with that same number. Each individual savings account is identified by the number following a dash. For example, 100001-0 is the first savings account vou open, 100001-1 would be another savings account that is still part of your same account. This is so that you can keep some funds separate from the others, like a "Fitness club" account 4. An instance variable called accountNumber, that will hide the accountNumber from the superclass, should also be in this class 5. Write a constructor that takes a name and an initial balance as parameters and calls the constructor for the superclass. It should initialize accountNumber to be the current value in the superclass accountNumber (the hidden instance variable) concatenated with a hyphen and then the savingsNumber. 6.Write a method called postInterest that has no parameters and returns no value. This method will calculate one month's worth of interest on the balance and deposit it into the account 7. Write a method that overrides the getAccountNumber method in the superclass 8. Write a copy constructor that creates another savings account for the same person. It should take the original savings account and an initial balance as parameters. It should call the copy constructor of the superclass, and assign the savingsNumber to be one more than the savingsNumber of the original savings account. It should assign the accountNumber to be the accountNumber of the superclass concatenated with the hyphen and the savingsNumber of the new account 9. Compile and debug this class 10. If you named and created your classes and methods correctly, you should not have any difficulties You must make vour classes work with this program
Step by Step Solution
There are 3 Steps involved in it
To implement the SavingsAccount class as specified we need to extend the BankAccount class Here is the C code for the SavingsAccount class csharp publ... View full answer
Get step-by-step solutions from verified subject matter experts
