Examlex

Solved

What Is the Output of the Following Code Snippet? Public

question 13

Multiple Choice

What is the output of the following code snippet? public static void main(String[] args)
{
Int num1 = 10;
Int num2 = 5;
Int num3 = 200;
Num3 = num3 % (num1 * num2) ;
System.out.println(num3) ;
}


Definitions:

Related Questions