Suppose that you have declared an integer array named scores, and you make the following method call:
Tota1Scores(scores, num : 1);
Of the following overloaded method definitions, which would execute?
a. private static void TotalScores(int[] scores)
b. private static void Tota1Scores(int[] scores, int num)
c. private static void TotalScores(int[] scores, int num $=10$, int code $=10$ )
d. The program would not compile.