Question: In C# Visual Studio please!!!! Exercise 5.2-9: Create a class BankAccount with the UML specification below BankAccount + accountID: int (default value is 10000) +
Exercise 5.2-9: Create a class BankAccount with the UML specification below BankAccount + accountID: int (default value is 10000) + accountType: char (default value is 'C') - balance: double (default value is 100) +BankAccount() +BankAccount(int id, char type, double initial_balance) +change_type(char) (return type: void) +withdraw(double) (return type: double) +deposit(double) (return type: double) + check_balance() (return type: double) All methods, except the constructors, shall return the updated balance, and print out all data. All member functions, except "check balance", shall update the values correctly. The driver shall Instantiate an object named customerl using the default constructor Deposit $1,000 to customerl, then - Withdraw $200 from customerl, and then Check balance for customer1 o Instantiate an object named customer2 using the overloaded constructor, with accountID=10002, accountType='S', and balance=2,000. Change account type to 'C' on customer2, followed by Check balance for customer2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
