Multiple Choice
How many times does the code snippet given below display "Loop Execution"?
Int i = 1;
While (i != 10)
{
System.out.println ("Loop Execution") ;
I++;
}
A) Infinite times
B) 8 times
C) 9 times
D) 10 times
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q73: Which statement is correct about the execution
Q74: How many times does the following loop
Q75: What will be printed by the statements
Q76: What will be the output of the
Q77: What is the output of the following
Q79: Which error type does the "off-by-one" error
Q80: What values does counter variable i assume
Q81: What is the output of the following
Q82: How many times does the following code
Q83: What will be printed by the statements