Multiple Choice
Suppose that x is an int variable, y is a double variable, and ch is a char variable.The input is: 15A 73.2
Choose the values after the following statement executes:
Cin >> x >> ch >> y;
A) x = 15, ch = 'A', y = 73.2
B) x = 15, ch = 'A', y = 73.0
C) x = 15, ch = 'a', y = 73.0
D) This statement results in an error because there is no space between 15 and A.
Correct Answer:

Verified
Correct Answer:
Verified
Q17: In C++, the dot is an operator
Q18: In the statement cin >> x;, x
Q19: Suppose that x = 55.68, y =
Q20: C++ has a special name for the
Q21: When reading data into a char variable,
Q23: Suppose that ch1 and ch2 are char
Q24: In an output statement, each occurrence of
Q25: In C++, the dot is an operator
Q26: Suppose that x is an int variable
Q27: Suppose that ch1 and ch2 are char