Assume the method below has been added to the BankAccount class. public void giveBonus () { balance balance + 5.0; } What will be output from the following statements that use the revised BankAccount class? BankAccount premiumAccount = new BankAccount (100); premiumAccount.giveBonus (); premiumAccount. giveBonus (); premiumAccount.giveBonus O; System.out.println (premiumAccount.getBalance()); 110.0 100.0 105.0 115