Which of the following function calls would not return the value that is its first argument?

a. std::min( 3, 23 )
b. std::min( 'N', 'P' )
c. std::max( 17, 16 )
d. std::max( 'd', 'k' )

d. std::max( 'd', 'k' )

Computer Science & Information Technology

You might also like to view...

You can save a system image backup to ________

a. A hard drive b. A set of DVDs c. A network location d. All the above

Computer Science & Information Technology

Which of the following statements about the for statement is false?

a. The three expressions in the for statement are optional. b. The initialization and increment expressions can be comma-separated lists. c. You must declare the control variable before the for statement. d. A for statement can always be used to replace a while statement, and vice versa.

Computer Science & Information Technology