This is java COP 3337 Please just give me the correct answer
This is java (COP 3337) Please just give me the correct answer, no explanation, thumbs up waiting :)
A bank maintains the accounts for its customers. The bank offers customers two type of accounts - a checking account and a savings account. The checking account charges customers a fixed service charge of $25.00 per month. The savings account yields a fixed interest rate of 3% per year on the monthly balance. The bank allows customers to make deposits; withdrawals, and to get their balance at any time. From the set of response below select these chat best describe on interface for this situation. public interface Banking {double CHECKING_RATE = 25.0. final double SAVING_RATE = 0.03; void deposit(double amounts): double withdraw(double amount): double getBalance();} public interface Banking {double CHECKING_RATE = 25.0. double SAVING_RATE = 0.03: void deposit{double amount); double withdraw(double amount); static double money = getBalance();} public interface Banking {static double CHECKING_RATE = 25.0: double SAVING_RATE = 0 03; void deposit:(double amount); abstract double withdraw(double amount): double getBalance();} public interface Banking {double CHECKING_RATE = 25.0: double SAVING_RATE = 0.03; void deposit(double amount): double withdraw(double amount); static double getBalance(){return amount}; public internee Banking {static double CHECKING_RATE = 25.0: static final double SAVING_RATE = 003; public abstract void deposit(double amount); abstract double withdraw(double amount); double getBalance(); Select one or more: II V IV I III Consider the following Java code class B extends A {B() {}} abstract class A {A() {}} Which of the following will compile? Select one or more: The codes will not compile, because the abstract class \"A\" should come before the concrete class \"B\" B b = new (B); A a = new B(); A a = new A(); B b = new B(); B b = new A();Solution
1)Ans) b,c,d,e
______________
2)Ans) c, e
A a=new B();
B b=new B();
_______________
