Q. What is the output of the Java program below?
Code:
if(3>1)
{
4;
}
β
Correct Answer: (C)
Compiler error
if(3>1)
{
4;
}
You must be Logged in to update hint/solution