public class Debug { public static void main(String[] args) { System.out.println("An Emergency Broadcast"); } } /* Introduce the following errors, one at a time, to the program. Record any error messages that the compiler produces. Fix the previous error each time before you introduce a new one. If no error messages are produced, explain why. Try to predict what will happen before you make each change. 1. Change Debug to debug. 2. Change Emergency to emergency. 3. Remove the first quotation mark in the string. We have not talked about what a string is, but you may guess that it is something enclosed by two matching quotation marks. 4. Remove the last quotation mark in the string. 5. Change one of the double quotation marks with a single quotation mark. 6. Change main to man. 7. Change println to bogus. 8. Remove the semicolon at the end of the println statement. 9. Remove one of the open squiggly-braces in the program. 10. Remove one of the close squiggly-braces in the program. 11. Remove System.. 12. Remove one of the parentheses. Add an extra one. 13. Add the following two lines right below the System.out.... line and run it once. System.out.println("This was only a test."); System.out.println("Have a safe day."); Now run it again after you replace each occurrence of println by print and see what happens. */