Data Types and Variables Size of int in Java is Depends on execution environment 16 bit 32 bit 64 bit Depends on execution environment 16 bit 32 bit 64 bit ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Determine output:public class Test{ int a = 10; public void method(int a){ a += 1; System.out.println(++a); } public static void main(String args[]){ Test t = new Test(); t.method(3); }} 5 4 12 11 None of these 5 4 12 11 None of these ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables What is the output for the below code?public class Test{ int _$; int $7; int do; public static void main(String argv[]){ Test test = new Test(); test.$7=7; test.do=9; System.out.println(test.$7); System.out.println(test.do); System.out.println(test._$); }} Compile error - $7 is not valid identifier. 7 0 0 None of these 7 9 0 Compile error - do is not valid identifier. Compile error - $7 is not valid identifier. 7 0 0 None of these 7 9 0 Compile error - do is not valid identifier. 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 None of these Compilation fails with an error at line 3 8 7 Compilation fails with an error at line 5 10 7 None of these Compilation fails with an error at line 3 8 7 ANSWER DOWNLOAD EXAMIANS APP
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); }} Compilation Error float Exception is thrown at runtime double Compilation Error float Exception is thrown at runtime double ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables 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); }} 129 None of these -127 Compiler error 2 129 None of these -127 Compiler error 2 ANSWER DOWNLOAD EXAMIANS APP