Examlex

Solved

What Is the Output of the Following Code Snippet

question 66

Multiple Choice

What is the output of the following code snippet?
Public static void main(String[] args)
{
Int var1 = 10;
Int var2 = 2;
Int var3 = 20;
Var3 = var3 / (var1 % var2) ;
System.out.println(var3) ;
}


Definitions:

Related Questions