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



There is a Banking application. It has 2 types of account, Savings and Current. Write a method calc..

Answer / 94374

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

Post New Answer

More Core Java Interview Questions

How do you remove an element from an arraylist in java?

0 Answers  


Is linked list a linear or non-linear data structure?

0 Answers   Akamai Technologies,


What is the declaration statement?

0 Answers  


What does a void function return?

0 Answers  


What are operators and its types?

0 Answers  






How define set in java?

0 Answers  


What is the internal implementation of set in java?

0 Answers  


why marker interfaces are there in java

4 Answers   Digital Group,


what is singleton in java?

0 Answers   IBS,


Define locale.

0 Answers  


Why declare Main() method as a static in java ?

0 Answers   HCL,


How is object created in java?

5 Answers   Cap Gemini,


Categories