Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

need answers!! 1. Variables of a function that retain their value over multiple

ID: 645033 • Letter: N

Question

need answers!!

1. Variables of a function that retain their value over multiple calls to the function are called _______________ variables. 2. In C++ all functions have ______________ scope. 3. Default arguments are usually defined in the _____________ of the function. 4. A function returning a value should never use pass by _____parameters. 5. Every function that begins with a data type in the heading, rather than the word void, must have a(n) ______________ statement somewhere, usually at the end, in its body of instructions, 6 A(n) ______________ is a program that tests a function by simply calling it. 7. In C++ a block boundary is defined with a pair of______. 8. A(n) _______________ is a dummy function that just indicates that a function was called properly. 9. Default values are generally not given for pass by_______ parameters. 10. ______________ functions are functions that have the same name but a different parameter list.

Explanation / Answer

1)Local variables.

2)Private scope.

3)Local scope

4)pass by reference.

5)Return statement.

6)Recursive function.

7)/* and */

8)calling function

9)Pass by reference.

10)Overloading functions.