Question: what is the answer 6 WuTube .. Question Completion Status: public class Account private double balance; // instance variable that stores the balance W constructor
6 WuTube .. Question Completion Status: public class Account private double balance; // instance variable that stores the balance W constructor public Account( double InitialBalance ) validate that initialance 15 greater than 0.8; if it shot, bolonde is initialized to the default value 0.0 if ( initialBalance > 0.0) balance initialBalance; } / end Account constructor El credit odd) an amount to the account public void credit double amount) 1 balance - balance + amount; add mount to balance } end method credit return the account balance public double getBalance return balance; gives the value of balance to the calling method } end method gealance -end class Account What is output by the following main method? public static void main( String args[]) { Account account1 = new Account ( 15.33 ); System.out.printf("accounti balancer $8.2f ", account.getBalance()); System.out.println("adding $2.53 to account balance" ); accounti.credit( 2.53 ); System.out.printf("account balance: $%.2f ", account1.getBalance()); } // end main account balance: $15.33 o adding 52 53 to account balance account balance $17 86 account balance: $17.86 adding $15.33 to account balance account balance $2.53 account balance: $15.33 adding $17.86 to account balance account balance $2.53 dows account balance: 15.33 o
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
