In a function that receives one parameter value from the main program and passes back a changed value of the parameter, that parameter is considered __________.

a. an input parameter
b. an output parameter
c. an input/output parameter
d. a local variable
e. a stub

c. an input/output parameter

Computer Science & Information Technology

You might also like to view...

Just as with forms, you can add, edit, or delete data in a report

Indicate whether the statement is true or false

Computer Science & Information Technology

Given the function declaration (prototype), does the compiler complain or compile if you call this using the following line? If the compiler complains, what is the complaint?

``` //if score >= min_to_pass, returns 'P' for passing, //else returns 'F' for failing. char grade (int score, int min_to_pass); int main() double fscore; char fgrade; int need_to_pass; //omitted code to get values for variables //fscore and need fgrade = grade(fscore, need); return 0; ``` What will be an ideal response?

Computer Science & Information Technology