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) ;
Which method call will cause an error?
(A) b.deposit(200) ;
(B) s.withdraw(500);
(C) c.withdraw(500);
(D) s. deposit(10000) ;
(E) s.addInterest() ;