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 ); } }
Reveal answer
Fill a bubble to check yourself
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 ); } }