Which of the following method declarations is correct for a static method named computeSum() if the method receives two double arguments?
a. public static double, double computeSum()
b. public static void computeSum(double a, double b)
c. public int computeSum(double a, double b)
d. public static int computeSum(double a, b)