96.9k views
2 votes
"Para-meter________.a.a measure of the distance between a function's conception and implementation.b.A way to give input to a function that controls how the function runs.c.A collection of commands that can be used in a programming language.d.Another name for the purpose of a function.e.A named memory location.

1 Answer

1 vote

Answer:

The correct option to the following question is an option (b).

Step-by-step explanation:

A function parameter is an argument that is written inside the function's parentheses'()' in which we pass the value which is known as an argument.

For example:

function_name(int a)

{

//code or body of the function

}

Here, 'function_name' is the name of the function and brackets '()' are the parentheses'()' and inside the parentheses 'int a' is the argument.

User Dayanara
by
5.0k points