This should be done in VS 2015 community edition using C#. Create class SavingsAccount. Use a static read-write property AnnualInterestRate to store the annual interest rate for all account holders.
Each object of the class contains a property SavingsBalance, indicating the amount the saver currently has on deposit.
Provide method Calculate Monthly Interest to calculate the monthly interest by multiplying the SavingsBalance by AnnualInterestRate divided by 12- this interest should be added to savingsBalance.
Write an app to test class Savings Account. Create 2 savingsAccount objects, server1 and server2, with balances $2000.00 and $3000.00, respectively.
Set AnnualInterestRate to 4%, then calculate the monthly interest and display the new balances for both servers.
Then set the AnnualInterestRate to 5%, calculate the next month's interest and display the new balance for both servers.