Data Types and Variables Size of int in Java is Depends on execution environment 16 bit 64 bit 32 bit Depends on execution environment 16 bit 64 bit 32 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); }} 4 11 12 5 None of these 4 11 12 5 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 shorter 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 larger than source type. Two type are compatible and size of destination type is shorter 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 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); }} None of these 2 -127 Compiler error 129 None of these 2 -127 Compiler error 129 ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Java is a ........... language. None of these moderate typed strongly typed weakly typed None of these moderate typed strongly typed weakly typed ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Which of the following automatic type conversion will be possible? long to int int to long byte to int short to int long to int int to long byte to int short to int ANSWER DOWNLOAD EXAMIANS APP