What is the output of the following code

Class division 
{
Public static void main(String[ ] args)
{
 Int n1=15;
if( n1\3==0)
{
System.out.println (n1"is divisible by 3");
}
else
System.out.println (n1"is not divisible by 3");
}
}

Posted on by