Use the following for Questions
A program to test the BankAccount, SavingsAccount, and CheckingAccount classes has these declarations:
BankAccount $\mathrm{b}=$ new BankAccount (1400) ;
BankAccount $s=$ new SavingsAccount (1000,0.04) ;
BankAccount $c=$ new CheckingAccount (500) ;
In order to test polymorphism, which method must be used in the program?
(A) Either a SavingsAccount constructor or a CheckingAccount constructor
(B) addInterest
(C) deposit
(D) withdraw
(E) getBalance