JAVA Operators
What will be the output?if(1 + 1 + 1 + 1 + 1 == 5){ System.out.print("TRUE");}else{ System.out.print("FLASE");}

TRUE
Compiler Error
FALSE
None of these

ANSWER DOWNLOAD EXAMIANS APP

JAVA Operators
public class Test{      public static void main(String args[]){            System.out.print(""=="");            System.out.print(" ");            System.out.print("A"=="A");            System.out.print(" ");            System.out.print("a==A");      }}

Compilation Fails
None of these
true true a==A
true true false
"==" A"=="A a==A

ANSWER DOWNLOAD EXAMIANS APP