Data Types and Variables In Java byte, short, int and long all of these are Both of the above unsigned signed None of these Both of the above unsigned signed None of these 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
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); }} 12 None of these 5 11 4 12 None of these 5 11 4 ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables What would be the output of the following fraction of code ?int Integer = 34 ;char String = 'S' ;System.out.print( Integer ) ;System.out.print( String ) ; S Does not compile as Integer and String are API class names. 34 34 S Throws exception. S Does not compile as Integer and String are API class names. 34 34 S Throws exception. 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._$); }} None of these Compile error - do is not valid identifier. 7 0 0 7 9 0 Compile error - $7 is not valid identifier. None of these Compile error - do is not valid identifier. 7 0 0 7 9 0 Compile error - $7 is not valid identifier. ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables In Java, the word true is ................ Same as value 0 A Boolean literal Same as value 1 A Java keyword Same as value 0 A Boolean literal Same as value 1 A Java keyword ANSWER DOWNLOAD EXAMIANS APP