Consider the following code snippet that appears in a subclass: public void deposit(double amount) { transactionCount ++; deposit(amount); } Which of the following statements is true?
a) This method will call itself.
b) This method will call itself.
c) This method calls a public method in its subclass.
d) This method calls a public method in its subclass.
e) This method calls a private method in its superclass
f) This method calls a private method in its superclass
g) This method calls a public method in its superclass.