JAVA Operators
int ++a = 100 ; System.out.println( ++a ) ;What will be the output of the above fraction of code ?

100
Displays error as ++a is not enclosed in double quotes in println statement
None of these
Compiler displays error as ++a is not a valid identifier

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");      }}

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

ANSWER DOWNLOAD EXAMIANS APP