Exam-1 Java programming instruction—————–>60 points
Your task is to modify existing class in your textbook on page 101 Exercise 3.11
(Modified Account Class) Modify class account (Fig.3.8) to provide a method called with-draw that withdraws money from an account.
Ensure that the withdrawal amount does not exceed the Account’s balance. If it does, the balance should be left unchanged and the
method should print a message indicating “withdrawal amount exceeded account balance.” Modify class AccountTest (Fig.3.9) to test method withdraw.
Exam-1 Java programming instruction—————–>60 points
Your task is to modify existing class in your textbook on page 101 Exercise 3.11
(Modified Account Class) Modify class account (Fig.3.8) to provide a method called with-draw that
withdraws money from an account.
Ensure that the withdrawal amount does not exceed the Account’s balance. If it does, the balance
should be left unchanged and the
method should print a message indicating “withdrawal amount exceeded account balance.” Modify
class AccountTest (Fig.3.9) to test method withdraw.
Good luck!
Here is sample program output for your midterm exam. Your program output must be similar to this
screenshot.