Solved

How Many Times Does the Code Snippet Given Below Display

Question 78

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:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions