Data Types and Variables What is the output for the below code ?1. public class Test{2. public static void main(String[] args){3. byte b = 6;4. b+=8;5. System.out.println(b);6. b = b+7;7. System.out.println(b);8. }9. } 14 21 14 13 None of these Compilation fails with an error at line 6 Compilation fails with an error at line 4 14 21 14 13 None of these Compilation fails with an error at line 6 Compilation fails with an error at line 4 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 3 0 2.5 2 25 3 0 2.5 2 ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables The smallest integer type is ......... and its size is ......... bits. short, 8 short, 16 byte, 8 short, 16 short, 8 short, 16 byte, 8 short, 16 ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables In Java byte, short, int and long all of these are None of these signed unsigned Both of the above None of these signed unsigned Both of the above ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables In Java, the word true is ................ Same as value 1 Same as value 0 A Boolean literal A Java keyword Same as value 1 Same as value 0 A Boolean literal A Java keyword 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); }} None of these 4 11 5 12 None of these 4 11 5 12 ANSWER DOWNLOAD EXAMIANS APP