Multiple Choice
Fill in the blank in the following method comment. /**
Deposits money into the bank account
@param _________ the amount to deposit
*/
Public void deposit(double amount)
{
Balance = balance + amount;
}
A) amount
B) balance
C) double amount
D) money
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q21: What is the process of hiding object
Q22: Which of the following corresponds to the
Q23: You should declare all instance variables as
Q27: We want to create a class that
Q29: Given this method comment, fill in the
Q30: Documentation _ can be used to describe
Q31: We want to change the BankAccount class
Q83: Consider the constructor of the BankAccount class
Q90: A method is invoked on what type
Q107: An instance variable declaration consists of which