📚 Practice Mode
Basics of Java Programming
Learn at your own pace with hints and detailed explanations
1 / 14
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