Multiple Choice
What is the initial statement in the following for loop? (Assume that all variables are properly declared.) int i;
For (i = 1; i < 20; i++)
Cout << "Hello World";
Cout << "!" << endl;
A) i = 1;
B) i < 20;
C) i++;
D) cout << "Hello World";
Correct Answer:

Verified
Correct Answer:
Verified
Q5: The control statements in the for loop
Q5: What is the output of the
Q6: Consider the following code. <br>int limit;<br>Int
Q8: In _ structures, the computer repeats particular
Q9: Putting one control structure statement inside another
Q9: In a while and for loop, the
Q13: A loop that continues to execute endlessly
Q16: What executes immediately after a continue statement
Q18: Assume that all variables are properly declared.The
Q33: _ loops are called posttest loops.<br>A) break<br>B)