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

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

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

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

ANSWER DOWNLOAD EXAMIANS APP