Data Types and Variables Which of the following automatic type conversion will be possible? byte to int long to int int to long short to int byte to int long to int int to long short to int 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 5 11 12 None of these 4 5 11 12 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 2 Compiler error None of these -127 129 2 Compiler error None of these -127 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._$); }} 7 0 0 None of these 7 9 0 Compile error - $7 is not valid identifier. Compile error - do is not valid identifier. 7 0 0 None of these 7 9 0 Compile error - $7 is not valid identifier. Compile error - do is not valid identifier. ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables In Java byte, short, int and long all of these are Both of the above None of these unsigned signed Both of the above None of these unsigned signed ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Size of float and double in Java is 64 and 32 32 and 64 32 and 32 64 and 64 64 and 32 32 and 64 32 and 32 64 and 64 ANSWER DOWNLOAD EXAMIANS APP