Question: Given the following code: public class Account { private double balance; // instance variable that stores the balance Il constructor public Account( double initialBalance )
Given the following code: public class Account { private double balance; // instance variable that stores the balance Il constructor public Account( double initialBalance ) { // validate that initialBalance is greater than 0.0; // if it is not, balance is initialized to the default value 0.0 if (initialBalance > 0.0) balance = initialBalance; } ll end Account constructor Il credit (add) an amount to the account public void credit( double amount) { balance = balance + amount; // add amount to balance } ll end method credit 1/ return the account balance public double getBalance { return balance; // gives the value of balance to the calling method } // end method getBalance } // end class Account What is output by the following main method? public static void main(String args[])
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
