Data Types and Variables 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 double Exception is thrown at runtime Compilation Error float double Exception is thrown at runtime Compilation Error ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables What is the output for the below code ?1. public class Test{2. public static void main(String[] args){3. int i = 010;4. int j = 07;5. System.out.println(i);6. System.out.println(j);7. }8. } Compilation fails with an error at line 5 10 7 8 7 Compilation fails with an error at line 3 None of these Compilation fails with an error at line 5 10 7 8 7 Compilation fails with an error at line 3 None of these ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Java is a ........... language. None of these weakly typed moderate typed strongly typed None of these weakly typed moderate typed strongly typed ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables 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 false 0 Compile error - static variable must be initialized before use. None of these 0 true 0 0 0 0 0 false 0 Compile error - static variable must be initialized before use. None of these 0 true 0 0 0 0 ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Which of the following automatic type conversion will be possible? long to int int to long short to int byte to int long to int int to long short to int byte to int ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables The following fraction of codedouble STATIC = 2.5 ;System.out.println( STATIC ); None of these Rraises an error as STATIC is used as a variable which is a keyword Prints 2.5 Raises an exception None of these Rraises an error as STATIC is used as a variable which is a keyword Prints 2.5 Raises an exception ANSWER DOWNLOAD EXAMIANS APP