Answer:
e.
balance = balance + amount;
return balance;
Step-by-step explanation:
Required
Code to update account balance and return the updated balance
The code that does this task is (e).
Assume the following:
So, code (e) is as follows:
balance = balance + amount;
Here, the updated value of balance is 7000
So: return balance
will return 7000 as the updated account balance
Other options are incorrect