If you have defined a class SavingsAccount with a public static method getNumberOfAccounts(), and created a SavingsAccount object referenced by the variable account20, which of the following will call the getNumberOfAccounts()method?
A. getNumberOfAccounts();
B. SavingsAccount.getNumberOfAccounts();
C. getNumberOfAccounts(account20);
D. None of the above, you cannot call a static method.