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

1. Values that are sent into a function are called _______. 2. Special variables

ID: 3643432 • Letter: 1

Question

1. Values that are sent into a function are called _______.

2. Special variables that hold copies of function arguments are called _______.

3. ________ variables are defined outside all functions and are accessible to any function within their scope. A(n) _______ variable is defined iside a function and is not accessible by other functions.

4. _______ local variables retain their values between function calls.

5. Reference variables are defined like regular variables, except there is a(n) _______ in front of the name.

Explanation / Answer

1) prototype , definition 2) Formal parameters (i think..not sure.) 3)Zero 4)reference/alias/pointer 5)True.