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

Verified
Correct Answer:
Verified
Related Questions
Q10: In the for statement, if the logical
Q17: What is the output of the following
Q18: What is the value of counter after
Q22: Which of the following does not have
Q24: int x = 27;<br>Int y = 10;do<br>X
Q25: int sum = 0;int limit = console.nextInt();<br>Int
Q26: In the case of the sentinel-controlled while
Q37: The output of the following Java code
Q39: A break statement is legal in a
Q43: A loop that continues to execute endlessly