Examlex

Solved

Int LoopVariable = 0; Do

question 14

Multiple Choice

int loopVariable = 0; do
{
Console.WriteLine("Count = {0:}", ++loopVariable) ;
}while (loopVariable < 5) ;
How many times will be loop body be executed if the conditional expression is changed to (loopVariable == 5) ?


Definitions:

Related Questions