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
Q2: Which of the following function prototypes is
Q13: When you attach & after the dataType
Q15: _ parameters are useful in three situations:•
Q23: Given the function prototype: float test(int, int,
Q25: A variable listed in a header is
Q28: The following function heading in a C++
Q30: Assume the following. static_cast<int>('a')= 97<br>Static_cast<int>('A')= 65<br>The output
Q32: What value is returned by the following
Q35: A variable for which memory is allocated
Q40: Once you write and properly debug a