Consider the following two method declarations:
public static void calculateInterest(int bal, double rate)
public static void calculateInterest(double bal, int rate)
Which of the following method calls will cause an ambiguity?
a. calculateInterest(10.50,50)
b. calculateInterest(100,50.50)
c. calculateInterest(100.50)
d. calculateInterest(100,50)