Multiple Choice
Given the following function prototype: int myFunc(int, int) ;
Which of the following statements is valid? Assume that all variables are properly declared.
A) cin >> myFunc(y) ;
B) cout << myFunc(myFunc(7, 8) , 15) ;
C) cin >> myFunc('2', '3') ;
D) cout << myFunc(myFunc(7) , 15) ;
Correct Answer:

Verified
Correct Answer:
Verified
Q5: Functions that do not have a return
Q6: The statement: return 2 * 3 +
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
Q11: Assume that all variables are properly declared.The
Q12: Given the function prototype: double testAlpha(int u,
Q13: When you attach & after the dataType
Q14: The output of the statement:cout << tolower('$')
Q15: _ parameters are useful in three situations:•