JAVA Operators
What is the output of the following program ?class Numbers{ public static void main(String args[]){ int a=20, b=10; if((a < b) && (b++ < 25)){ System.out.println("This is any language logic"); } System.out.println(b); }}

10
12
11
Compilation Error

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
true true a==A
"==" A"=="A a==A
true true false
None of these

ANSWER DOWNLOAD EXAMIANS APP