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

1. The _______ is the part of a function definition that shows the function name

ID: 3641723 • Letter: 1

Question

1. The _______ is the part of a function definition that shows the function name, return type, and parameter list.

2. If a function doesn't return a value, the word _______ will appear as its return type.

3. If function showValue has the following header:
void showValue ( int quantity)
Write a statement to call this function with the argument value 5.
_______

4. Either a function's _______ or its _______ must precede all calls to the function.

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

Explanation / Answer

(1) function prototype
(2) void
(3) showValue(5)
(4) declaration or its definition
(5)parameters or arguements