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 13 Compilation fails with an error at line 6 Compilation fails with an error at line 4 14 21 None of these 14 13 Compilation fails with an error at line 6 Compilation fails with an error at line 4 14 21 None of these 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 true 0 None of these 0 0 0 0 false 0 Compile error - static variable must be initialized before use. 0 true 0 None of these 0 0 0 0 false 0 Compile error - static variable must be initialized before use. ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Size of float and double in Java is 32 and 64 64 and 32 64 and 64 32 and 32 32 and 64 64 and 32 64 and 64 32 and 32 ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Java is a ........... language. strongly typed weakly typed None of these moderate typed strongly typed weakly typed None of these moderate typed 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 2 129 -127 None of these Compiler error 2 129 -127 None of these ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Automatic type conversion in Java takes place when Two type are compatible and size of destination type is larger than source type. Two type are compatible and size of destination type is equal of source type. All of these 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. Two type are compatible and size of destination type is equal of source type. All of these Two type are compatible and size of destination type is shorter than source type. ANSWER DOWNLOAD EXAMIANS APP