Multiple Choice
Suppose that x = 1565.683,y = 85.78,and z = 123.982.What is the output of the following statements?
cout << fixed << showpoint;
Cout << setprecision(3) << x << ' ';
Cout << setprecision(4) << y << ' ' << setprecision(2) << z << endl;
A) 1565.683 85.8000 123.98
B) 1565.680 85.8000 123.98
C) 1565.683 85.7800 123.98
D) 1565.683 85.780 123.980
Correct Answer:

Verified
Correct Answer:
Verified
Q4: The function _ returns the next character
Q11: The extraction operator >> skips only all
Q12: Suppose that x is an int variable,y
Q13: To use a parameterized stream manipulator in
Q14: You can use the function getline to
Q16: C++ provides a header file called _,
Q17: In C++, the dot is an operator
Q30: _ is a parameterized stream manipulator.<br>A) endl<br>B)
Q31: It is a good idea to redefine
Q38: Suppose that outFile is an ofstream variable