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

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

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
Compilation Fails
"==" A"=="A a==A
None of these

ANSWER DOWNLOAD EXAMIANS APP