Question: Next three (3) questions are based on the following java code import java.text DecimalFormat, public class Account { private long acctNum; private String owner; private


Next three (3) questions are based on the following java code import java.text DecimalFormat, public class Account { private long acctNum; private String owner; private double balance; public Account(long num, String name, double initialDeposit) i acctNum-num; owner = name balance - initialDeposit; public Account(long num, String name) i acctNum-num; owner = name balance 0; public double getBalanceO f retum balance; public String toString) DecimalFormat df= new DecimalFormat("0.00"); return (acctNum+"|"name "|" +df.format(balance)); Question: In a driver class, which of the following can be used to instantiate a new Account a1? 0 A. new Account(a1); 0 B. new Account a1 = (999999999, "John Smith", 100); C. Account a1 = new Account(999999999, 100, "John Smith"); D. Account a1 new Account (999999999, "John Smith")
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
