Multiple Choice
Suppose that x is an int variable,y is a double variable,z is an int variable,and the input is: 15 76.3 14
Choose the values after the following statement executes:
Cin >> x >> y >> z;
A) x = 15, y = 76, z = 14
B) x = 15, y = 76, z = 0
C) x = 15, y = 76.3, z = 14
D) x = 15.0, y = 76.3, z = 14.0
Correct Answer:

Verified
Correct Answer:
Verified
Q15: If input failure occurs in a C++
Q20: C++ has a special name for the
Q21: When reading data into a char variable,
Q24: In an output statement, each occurrence of
Q28: Manipulators without parameters are part of the
Q31: Suppose that alpha,beta,and gamma are int variables
Q32: Suppose that alpha is an int variable
Q34: The stream function _ lets you put
Q37: On some compilers,the statements cin >> left;
Q41: Suppose that ch1 and ch2 are char