Multiple Choice
How many times will the following loop print hello?
I = 1;
While i <= 10 )
Cout << "hello";
A) 0.
B) 9.
C) 10.
D) An infinite number of times.
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q2: The conditional operator (?:):<br>A) Is the only
Q7: Which of the following is a double-selection
Q8: Assuming that x and y are equal
Q9: Which of the following operations has the
Q12: Which of the following encompasses the other
Q16: Which operation does not take place in
Q20: What is the final value of x
Q20: Which of the following will not increment
Q24: A block:<br>A) Must contain exactly three statements.<br>B)
Q26: What is wrong with the following while