What will be the output?public class Test{ public static void main(String args[]){ int a = 42; double b = 42.25; System.out.print((a%10)+" "+(b%10)); }} 4.2 4.225 2 4.225 42 42.5 2 2.5 Compilation Error TRUE ANSWER : ? YOUR ANSWER : ?
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 None of these true true a==A true true false "==" A"=="A a==A TRUE ANSWER : ? YOUR ANSWER : ?
int ++a = 100 ; System.out.println( ++a ) ;What will be the output of the above fraction of code ? Displays error as ++a is not enclosed in double quotes in println statement Compiler displays error as ++a is not a valid identifier None of these 100 TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output?if(1 + 1 + 1 + 1 + 1 == 5){ System.out.print("TRUE");}else{ System.out.print("FLASE");} Compiler Error None of these TRUE FALSE TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output for the below code ?class A{ public void printValue(){ System.out.println("A"); }}class B extends A{ public void printValue(){ System.out.println("B"); }}1. public class Test{2. public static void main(String... args){3. A b = new B();4. newValue(b);5. }6. public static void newValue(A a){7. if(a instanceof B){8. ((B)a).printValue();9. }10. }11. } B None of these A Compilation fails with an error at line 4 Compilation fails with an error at line 8 TRUE ANSWER : ? YOUR ANSWER : ?
Determine output:public class Test{ public static void main(String... args){ int a=5 , b=6, c=7; System.out.println("Value is "+ b + c); System.out.println(a + b + c); System.out.println("String " + (b+c)); }} Value is 13 18 String 13 Value is 67 18 String 13 Value is 13 18 String None of these Compilation fails TRUE ANSWER : ? YOUR ANSWER : ?
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 Compilation Error 12 11 TRUE ANSWER : ? YOUR ANSWER : ?
Determine output:public class Test{ static int i = 5; public static void main(String... args){ System.out.println(i++); System.out.println(i); System.out.println(++i); System.out.println(++i+i++); }} 6 7 6 16 5 6 6 16 None of these 6 6 6 16 5 6 7 16 TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is the correct expression that evaluates to true if the number x is between 1 and 100 or the number is negative? (1 > x > 100) || (x < 0) ((x < 100) && (x > 1)) || (x < 0) ((x < 100) && (x > 1)) && (x < 0) 1 < x < 100 || x < 0 TRUE ANSWER : ? YOUR ANSWER : ?
int x = 0, y = 0 , z = 0 ;x = (++x + y-- ) * z++;What will be the value of "x" after execution ? 0 2 -1 1 -2 TRUE ANSWER : ? YOUR ANSWER : ?