Basics of Java Programming
Casual Mode - Take your time!
1 / 14
Correct
0
Incorrect
0
Score
0%
Multiple Choice
What is the output of following Java program?
public class Test
{
public static void main(String[] args)
{
double i=45.6567;
float j=i;
System.out.println( j );
}
}
- 45
- 45.6567
- 0.6567
- Run time Exception
- None of the above