Which of the following statement is a correct replacement fo…

Which of the following statement is a correct replacement for the //TODO tag in the overridden IrsBankAccount.withdraw() method defined in the following code? Select all options that apply. class BankAccount { private int accountNum; // account number of this bankAccount private double balance; // balance of this bankAccount /** * Withdraws the specified amount from this bank account * * @param amount the amount to withdraw */ public void withdraw(double amount) { /* Hidden implementation details */ } } /** * The IrsBankAccount class represents a special type of bank accounts which * applies penalty for withdrawal operations. * */ class IrsBankAccount extends BankAccount { private final int PENALTY = 20; // penalty to be withdrawn along with every withdrawal operation /** * Withdraws the specified amount, plus the penalty for withdrawing from this IRS * account. * @param amount to withdraw */ @Override public void withdraw(double amount) { // TODO complete the implementation of this method } }