Suppose a method in the BankAccount class is defined as:
BankAccount
public double computeInterest(int rate)
If the client code has declared a BankAccount variable named acct, which of the following would be a valid call to the above method?
acct
int result = BankAccount.computeInterest(42);
double result = computeInterest(acct, 42);
acct.computeInterest(42.0, 15);
double result = acct.computeInterest(42);