Examlex

Solved

What Is the Output of the Following Code Snippet

question 92

Multiple Choice

What is the output of the following code snippet?
Int digit = 500;
If (digit != 500)
{
System.out.println("500") ;
}
Else
{
System.out.println("Not 500") ;
}


Definitions:

Related Questions