Examveda
Examveda

Which of the following is false?

A. You enclose a function's statements in a set of braces

B. The function header is considered a C++ statement, so it must end in a semicolon

C. The keyword void tells the C++ compiler that the function does not return a value

D. A function can receive information that you send (pass) to it

E. An empty set of parentheses after the function's name in the function header tells you that the function does not receive any information

Answer: Option B


Join The Discussion

Related Questions on Object Oriented Programming Using C Plus Plus

A default catch block catches

A. all thrown objects

B. no thrown objects

C. any thrown object that has not been caught by an earlier catch block

D. all thrown objects that have been caught by an earlier catch block