Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Create the class SavingsAccount. Use the static variable annualInterestRate to store the annual interest rate for all account holders. Each object of the class contains

Create the class SavingsAccount. Use the static variable annualInterestRate to store the annual interest rate for all account holders. Each object of the class contains a private instance variable savingsBalance, indicating the amout the saver currently has on deposit. Provide method CalculateMonthlyInterest to calculate the monthly interest by muliplying the savingsBalance by annualInterestRate divided by 12-this interest should be added to savingsBalance. Provide static method ModifyInterestRate to set the annnualInterestRate to a new value. Write a console app to test class SavingsAccount. Create two savingsAccount objects, saver1 and saver2, with balances of $2000.00 and $3000.00, respectively. Set annualInterestRate to 4%, then calculate the monthly interst and display the new balances for both savers. Then set the annualInterestRate to 5%, calculate the next month's interst and display the new balances for both savers.

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

Professional Visual Basic 6 Databases

Authors: Charles Williams

1st Edition

1861002025, 978-1861002020

More Books

Students also viewed these Databases questions

Question

Describe Table Structures in RDMSs.

Answered: 1 week ago