Data Types and Variables Determine output:class A{ public static void main(String args[]){ int x; x = 10; if(x == 10){ int y = 20; System.out.print("x and y: "+ x + " " + y); y = x*2; } y = 100; System.out.print("x and y: " + x + " " + y); }} 10 20 10 100 10 20 10 10 10 20 10 20 Error 10 20 10 100 10 20 10 10 10 20 10 20 Error ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables 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); }} 25 2.5 3 0 2 25 2.5 3 0 2 ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Automatic type conversion in Java takes place when All of these Two type are compatible and size of destination type is equal of source type. Two type are compatible and size of destination type is shorter than source type. Two type are compatible and size of destination type is larger than source type. All of these Two type are compatible and size of destination type is equal of source type. Two type are compatible and size of destination type is shorter than source type. Two type are compatible and size of destination type is larger than source type. 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); }} Compiler error None of these -127 129 2 Compiler error None of these -127 129 2 ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables 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. } Compilation fails with an error at line 5 17 Compilation fails with an error at line 8 0 None of these Compilation fails with an error at line 5 17 Compilation fails with an error at line 8 0 None of these ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Determine output:public class Test{int i = 34;public static void main(String args[]){Test t1 = new Test();Test t2 = new Test();t1.i = 65;System.out.print(t1.i);System.out.print(t2.i);}} 34 34 34 65 65 34 65 65 34 34 34 65 65 34 65 65 ANSWER DOWNLOAD EXAMIANS APP