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

1. A function type is defined by the a. arguments passed to the function b. para

ID: 3586975 • Letter: 1

Question

1. A function type is defined by the a. arguments passed to the function b. parameters declared in the function header c. function's return type. 2. An argument passed to a function can a. only be a constant b. only be a variable c. be any expression of the expected argument type 3. If a function d oes not expect an argument, the function's prototype can be declared without braces following the function's name. b. a. with braces that contain nothing. To make the identifiers of the std namespace globally available in your program, you can add the directive a. #using namespace std; b. using

Explanation / Answer

Answers are:

1. (b) parameters declared in the function header.

2.(c) be any expression of the expected argument type.

3.(b) with braces that contain nothing.

4.(c) using namespace std;

5. (b) The arguments are converted to the corresponding parameter type.

6. (c) with three arguments.

7.(a) the whole program.