Data Types and Variables Java is a ........... language. None of these strongly typed weakly typed moderate typed None of these strongly typed weakly typed moderate typed ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables In Java, the word true is ................ Same as value 1 Same as value 0 A Boolean literal A Java keyword Same as value 1 Same as value 0 A Boolean literal A Java keyword ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Size of float and double in Java is 64 and 64 64 and 32 32 and 64 32 and 32 64 and 64 64 and 32 32 and 64 32 and 32 ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables The smallest integer type is ......... and its size is ......... bits. byte, 8 short, 8 short, 16 short, 16 byte, 8 short, 8 short, 16 short, 16 ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables How many primitive data types are there in Java? 9 6 7 8 9 6 7 8 ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables The following program:public class Test{ static boolean isOK; public static void main(String args[]){ System.out.print(isOK); } } Will not compile as boolean can never be static Prints false Prints true Will not compile as boolean is not initialized Will not compile as boolean can never be static Prints false Prints true Will not compile as boolean is not initialized ANSWER DOWNLOAD EXAMIANS APP