JAVA Operators
What will be the output after compiling and running following code?1. public class Test{2. public static void main(String... args){3. int x =5;4. x *= 3 + 7;5. System.out.println(x);6. }7. }

None of these
Compilation fails with an error at line 4
10
22
50

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

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

ANSWER DOWNLOAD EXAMIANS APP