Answer:
b. data type of arguments
Explanation:
One of the ways to overload a method is using different type of arguments. Let's say we have a method that finds and returns two integer values
public int sumValues(int num1, int num2){
return num1 + num2;
}
We can overload this method by passing double values as arguments
public double sumValues(double num1, double num2){
return num1 + num2;
}
Answer:
They can help to explain the relationship between the output and input variables.
Hope this Helps!
Rapid prototyping as it allows the production of a functional program in a short time
U have to double-click for multiple paragraphs instead of single click