Multiple Choice
Suppose that x is an int variable,y is a double variable and ch is a char variable and 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
Q4: The function _ returns the next character
Q10: Suppose that x = 1565.683,y = 85.78,and
Q11: The extraction operator >> skips only all
Q13: To use a parameterized stream manipulator in
Q13: Suppose that ch1 and ch2 are char
Q14: You can use the function getline to
Q16: On some compilers,the statements cin >> fixed;
Q17: In C++, the dot is an operator
Q30: _ is a parameterized stream manipulator.<br>A) endl<br>B)
Q38: Suppose that outFile is an ofstream variable