Data Types and Variables Determine output:public class Test { static void test(float x){ System.out.print("float"); } static void test(double x){ System.out.print("double"); } public static void main(String[] args){ test(99.9); }} Compilation Error double Exception is thrown at runtime float Compilation Error double Exception is thrown at runtime float ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Which of the following automatic type conversion will be possible? int to long long to int short to int byte to int int to long long to int short to int byte to int ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Size of int in Java is 16 bit 64 bit 32 bit Depends on execution environment 16 bit 64 bit 32 bit Depends on execution environment ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Java is a ........... language. strongly typed None of these moderate typed weakly typed strongly typed None of these moderate typed weakly typed ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables In Java, the word true is ................ Same as value 0 Same as value 1 A Java keyword A Boolean literal Same as value 0 Same as value 1 A Java keyword A Boolean literal ANSWER DOWNLOAD EXAMIANS APP
Data Types and Variables Size of float and double in Java is 32 and 64 64 and 64 64 and 32 32 and 32 32 and 64 64 and 64 64 and 32 32 and 32 ANSWER DOWNLOAD EXAMIANS APP