Which of the following pairs of method declarations represent correctly overloaded methods?
a. private static void Method(int a)
private static void Method(int b)
b. private static void Method(double d)
private static int Method()
c. private static double Method(int e)
private static int Method(int f)
d. Two of these are correctly overloaded methods.