Examlex

Solved

How Many Times Does the Following Code Fragment Display "Hi

question 82

Multiple Choice

How many times does the following code fragment display "Hi"?
Int i = 10;
While (i >= 0)
{
System.out.println("Hi") ;
I--;
}


Definitions:

Related Questions