This is for C 7 Parameters are A The limits of what the prog
This is for C++
7) Parameters are:
A) The limits of what the program can do
B) Variables that exist in the Global scope that provide information for a function to use
C) A list of local variables that are created as part of the function that take information from outside the function
D) The values returned from a function which are used to finish calculations where the function was called
E) The documentation of what a function does
Choose one of the following. I will rate right away! Thank you!
Solution
The answer is C. Parameters are values that are passed to the function. These values are passed when we call the function. In C++ we provide the parameter data type and name of the paramter in function declaration.

