A
Q. What will be the output of the following Java program?
class Output
{
public static void main(String args[])
{
Double i = new Double(257.5);
Double x = i.MIN_VALUE;
System.out.print(x);
}
}
- Correct Answer - Option(B)
- Views: 17
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.