157k views
2 votes
The ______ of a function take(s) information into the function from the calling program. Group of answer choices prototype local variables arguments purpose parameters

User Rypel
by
4.8k points

1 Answer

2 votes

Answer:

The __arguments ____ of a function take information into the function from the calling program.

Step-by-step explanation:

The arguments of a function refer to the information or values that are passed into a function when they are called. The argument may be assigned by default. A default argument is automatically assigned by the compiler because the caller of the function does not provide a value for the argument with a default value.

User Hanbzu
by
5.3k points