53.8k views
2 votes
When you call a method with a parameter list, the arguments in the argument list Select one: a. must be coded in the same sequence as the parameters b. must have data types that are compatible with the parameters c. have the same names as the parameters d. all of the above e. a and b only

1 Answer

0 votes

Answer:

a and b only

Step-by-step explanation:

If you have a function foo(int a, double b) { } you can call this as foo(x,y), just as long as x is an int and y is a double.

User Marcus Nunes
by
4.9k points