The following output appears when I run the program: The expression ba.Balance returns twice the actual balance of the account: 2000. The assignment is equivalent to The value of the expression is 2100. When the setter of Balance is
applied, 2100 - 50 = 2050 is assigned to the instance variable balance.Peter's account holds 1000 kroner
Balance = 2000
Peter's account holds 1000 kroner
Peter's account holds 2050 kroner
ba.Balance += 100;
ba.Balance = Ba.Balance + 100;
Ba.Balance + 100