There is a Banking application. It has 2 types of account,
Savings and Current. Write a method calculateInterest by
passing an ArrayList of these account objects and calculate
Interest accordingly. Write code for this situation
public class CalculateInterst {
public static double calculateInterest (List list){
double intrest = 0;
if(list != null && list.get(0).equals("SAVING")){
//Calculate interest for Saving Account and return it
intrest = 7.0;
}else if (list != null && list.get(1).equals("CURRENT")){
//Calculate interest for Saving Account and return it
intrest = 5.0;
}
return intrest;
}
public static void main(String[] args) {
List list = new ArrayList();
list.add("SAVING");
list.add("CURRENT");
calculateInterest(list);
}
| Is This Answer Correct ? | 2 Yes | 0 No |
What are decalarations?
What is a class in java?
What is Unicast and Multicast object? Where we will use?
1 Answers Scope International,
can any body tell me? does advance java and j2ee both are same.
when a servlet sends request for first time it uses the follwing methods a)init b)doget() c)dopost() d)service
What is the difference between conversation & casting?
Who is the owner of java?
What is Collection interface?
How do you reverse a string in java without using string buffer?
Why Set interface contains unique elements, what internally implemented for this so that it contains unique elements?
How applets will communicate with each other?
What is thread life cycle?