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

ANSWER DOWNLOAD EXAMIANS APP