Multiple Choice
int i;for (i = 0; i <= 10; i++)
System.out.println("*") ;
System.out.println("!") ;Which of the following is the update expression in the for loop above?
A) i = 0;
B) i
C) i++
D) System.out.println("*") ;
Correct Answer:

Verified
Correct Answer:
Verified
Q4: The loop condition of a while loop
Q8: boolean found = false;<br>Int num;<br>Int square;while (!found)<br>{<br>Num
Q9: ch = inFile.next().charAt();while (inFile.hasNext())<br>{<br>System.out.println(ch);<br>Ch = inFile.next().charAt();<br>}The above
Q10: What is value of x after the
Q11: The following for loop executes 21 times.
Q12: Which executes immediately after a continue statement
Q14: int x = 27;<br>Int y = 10;do<br>X
Q33: Control variables are automatically initialized in a
Q37: The output of the following Java code
Q39: A break statement is legal in a