Multiple Choice
We want to change the BankAccount class so that all accounts will have a monthly fee.Which of the following will properly define the instance variable monthlyFee that holds the monthly fee?
A) monthlyFee: double;
B) instance var monthlyFee;
C) private double monthlyFee;
D) private field monthlyFee;
Correct Answer:

Verified
Correct Answer:
Verified
Q83: Consider the constructor of the BankAccount class
Q84: Which statement is true about the following
Q85: Given the following constructor for the BankAccount
Q86: Where are instance variables properly declared?<br>A)the body
Q87: The code below for the mutator method
Q89: If the CarComponent class had the call
Q90: A method is invoked on what type
Q91: Given this method implementation, fill in the
Q92: The javadoc utility is used to<br>A)assist the
Q93: The access specifier in the declaration of