Multiple Choice
Given the function prototype: double testAlpha(int u, char v, double t) ;
Which of the following statements is legal?
A) cout << testAlpha(5, 'A', 2) ;
B) cout << testAlpha( int 5, char 'A', int 2) ;
C) cout << testAlpha('5.0', 'A', '2.0') ;
D) cout << testAlpha(5.0, "65", 2.0) ;
Correct Answer:

Verified
Correct Answer:
Verified
Q7: The output of the statement:cout << pow(2.0,
Q8: Using functions greatly enhances a program's readability
Q9: To use the predefined function tolower, the
Q10: Given the following function prototype: int myFunc(int,
Q11: Assume that all variables are properly declared.The
Q13: When you attach & after the dataType
Q14: The output of the statement:cout << tolower('$')
Q15: _ parameters are useful in three situations:•
Q16: The heading of the function is also
Q17: The _ of a function consists of