Problem 5
When a function accepts multiple arguments, does it matter in what order the arguments are passed in?
Problem 10
The _________ is the part of a function definition that shows the function name, return type, and parameter list.
Problem 11
If a function doesn’t return a value, the word _________ will appear as its return type.
Problem 16
A(n) _________ eliminates the need to place a function definition before all calls to the function.
Problem 17
A(n) _________ variable is defined inside a function and is not accessible outside the function.
Problem 20
Unless you explicitly initialize global variables, they are automatically initialized to _________.
Problem 25
When a function uses a mixture of parameters with and without default arguments, the parameters with default arguments must be defined _________.
Problem 37
Write a function named get Number that uses a reference parameter variable to accept an integer argument. The function should prompt the user to enter a number in the range of 1 through 100. The input should be validated and stored in the parameter variable. True or False
Problem 49
T F Static local variables are not destroyed when a function returns.
Problem 57
Each of the following functions has errors. Locate as many errors as you can. double average (int valuel, int value2, int value3) \\{ double average average \(=\) value \(1+\) value \(2+\) value 3 / 3 3