Multiple Choice
What is the output of the following statements?
cout << "123456789012345678901234567890" << endl
Cout << setfill('#') << setw(10) << "Mickey"
<< setfill(' ') << setw(10) << "Donald"
<< setfill('*') << setw(10) << "Goofy" << endl;
A) 123456789012345678901234567890
####Mickey Donald*****Goofy
B) 123456789012345678901234567890
####Mickey####Donald*****Goofy
C) 123456789012345678901234567890
####Mickey####Donald#####Goofy
D) 23456789012345678901234567890
****Mickey####Donald#####Goofy
Correct Answer:

Verified
Correct Answer:
Verified
Q5: When you want to process only partial
Q13: Suppose that ch1 and ch2 are char
Q18: The manipulator _ is used to output
Q18: In the statement cin >> x;, x
Q19: Suppose that x = 55.68,y = 476.859,and
Q20: Suppose that x and y are int
Q24: The functions get,ignore,and so on are members
Q25: cin is called a(n)_ object.
Q33: Suppose that x and y are int
Q37: The number of input data extracted by