/* LAB TEST 1 * Matric No : * * Question 1 * a. Please correct the error in this program * b. Use Dailog box where appropriate * * Please print the program for Question 1 (a) and 1 (b). */ public class Question1 { public static main() { String ICNo; System.out.println("Please insert your IC number"); String year = ICNo.substring(0,1); int yearNo = Integer.parseInt(year); int age = 2009 - year; System.out.println("Your age is "+ age); } }