Examlex

Solved

What Will Be Printed by the Statements Below

question 9

Multiple Choice

What will be printed by the statements below?
Int a = 10;
If (a > 5)
{
System.out.print ("One") ;
}
Else
{
System.out.print ("Two") ;
}
System.out.print ("Three") ;


Definitions:

Related Questions