Determine output:public class Test { static void test(float x){ System.out.print("float"); } static void test(double x){ System.out.print("double"); } public static void main(String[] args){ test(99.9); }} float Compilation Error double Exception is thrown at runtime TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output for the below code ?1. public class Test{2. int i=8;3. int j=9;4. public static void main(String[] args){5. add();6. }7. public static void add(){8. int k = i+j;9. System.out.println(k);10. }11. } 17 Compilation fails with an error at line 8 None of these 0 Compilation fails with an error at line 5 TRUE ANSWER : ? YOUR ANSWER : ?
The smallest integer type is ......... and its size is ......... bits. short, 16 short, 16 short, 8 byte, 8 TRUE ANSWER : ? YOUR ANSWER : ?
What will be output of following program?public class Test{ public static void main(String[] args){ byte b=127; b++; b++; System.out.println(b); }} Compiler error -127 129 None of these 2 TRUE ANSWER : ? YOUR ANSWER : ?
What will the output of the following program?public class Test{ public static void main(String args[]){ float f = (1 / 4) * 10; int i = Math.round(f); System.out.println(i); }} 3 2.5 0 2 25 TRUE ANSWER : ? YOUR ANSWER : ?
What would be the output of the following fraction of code ?int Integer = 34 ;char String = 'S' ;System.out.print( Integer ) ;System.out.print( String ) ; Throws exception. S Does not compile as Integer and String are API class names. 34 S 34 TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output for the below code ?1. public class Test{2. public static void main(String[] args){3. byte i = 128;4. System.out.println(i);5. }6. } Compilation fails with an error at line 3 128 None of these 0 Compilation fails with an error at line 4 TRUE ANSWER : ? YOUR ANSWER : ?
The following program:public class Test{ static boolean isOK; public static void main(String args[]){ System.out.print(isOK); } } Prints false Prints true Will not compile as boolean is not initialized Will not compile as boolean can never be static TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following automatic type conversion will be possible? int to long long to int byte to int short to int TRUE ANSWER : ? YOUR ANSWER : ?
What is the output for the below code ?class A{ int k; boolean istrue; static int p; public void printValue(){ System.out.print(k); System.out.print(istrue); System.out.print(p); }}public class Test{ public static void main(String argv[]){ A a = new A(); a.printValue(); }} 0 true 0 0 0 0 Compile error - static variable must be initialized before use. None of these 0 false 0 TRUE ANSWER : ? YOUR ANSWER : ?