Why should the following code in Java
System.out.println(new Integer(1)/ new Double(0));
print \'Infinity\' and not undefined. Isn\'t that
This is consistent with the IEEE 754 standard on floating-point, which Java follows.