Data Types and Variables The following program:public class Test{ static boolean isOK; public static void main(String args[]){ System.out.print(isOK); } } Prints false Will not compile as boolean is not initialized Prints true Will not compile as boolean can never be static Prints false Will not compile as boolean is not initialized Prints true Will not compile as boolean can never be static ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Which of the following automatic type conversion will be possible? short to int long to int byte to int int to long short to int long to int byte to int int to long 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 equal of 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 larger than source type. Two type are compatible and size of destination type is equal of 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 larger than source type. ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables What is the output of the following program?public class Test{static int x = 10 ; public static void main(String[] a){ Test test = new Test( ) ; Test test1 = new Test( ) ; test.x += 1 ; System.out.println( test.x + test1.x ) ; }} 22 20 Throws Exception Compilation Error 21 22 20 Throws Exception Compilation Error 21 ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables In Java, the word true is ................ A Boolean literal A Java keyword Same as value 0 Same as value 1 A Boolean literal A Java keyword Same as value 0 Same as value 1 ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Determine output:class A{ public static void main(String args[]){ int x; x = 10; if(x == 10){ int y = 20; System.out.print("x and y: "+ x + " " + y); y = x*2; } y = 100; System.out.print("x and y: " + x + " " + y); }} 10 20 10 20 10 20 10 100 Error 10 20 10 10 10 20 10 20 10 20 10 100 Error 10 20 10 10 ANSWER DOWNLOAD EXAMIANS APP