A(n) ________ is information that is passed to a function, and a(n) ________ is a special variable that receives and holds that information.

A) function call, function header
B) function prototype, function header
C) parameter, argument
D) argument, parameter
E) formal argument, actual argument


D) argument, parameter

Computer Science & Information Technology

You might also like to view...

What will be displayed in the list box when the following code runs?

``` Select Case num Case 6, 7, 11 lstBox.Items.Add("W") Case Is < 7 lstBox.Items.Add("X") Case Is > 5 lstBox.Items.Add("Y") Case Else lstBox.Items.Add("Z") End Select ``` (A) Z can never be displayed. (B) W, X and Y will be displayed if the value of num is 6. (C) W and Y will be displayed if the value of num is 7. (D) Z will always be displayed.

Computer Science & Information Technology

Vector graphics do not look like photographic images.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

If the width of the text block is fixed, the text wraps to create new lines as needed.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

If any logical condition listed in the function is true, the AND function returns a TRUE value. _________________________

Answer the following statement true (T) or false (F)

Computer Science & Information Technology