8.30.1.What happens when you try to compile and run code containing the following lines:
public class MainClass { public static void main(String[] argv) throws Exception {
Float A = new Float(1.0F);
String S = "value is " + A;
System.out.println(S);
}
}
8.30.Questions
8.30.1.
What happens when you try to compile and run code containing the following lines: