Answer:
C
Step-by-step explanation:
Overloaded methods in programming languages like java simply refers to methods with the names but with different parameter list. for example consider this two methods in a Java program:
public static int sum(int a, int b){
}
public static int sum(int a, int b, int c){
}
These two methods have the same signature but different parameter list, this is legal in Java and it is called Method Overloading. When a call is made to sum. The determinant factor as to which of these methods that will be executed is the number of arguments that will be passed by the calling program.