SCJP Certification

Sun Certified Java Programmer Certification exam essentials

Archive for February 13th, 2010

February 13th, 2010

You work as a Programmer for InfoTech Inc. He develops the following code snippet:

No Comments, Uncategorized, by Daisy Williams.

enum Grade { GradeS(10), GradeA(17), GradeB(20); Grade(int num) { System.out.println(num); } } public class EnumGrade { public static void main(String…

Share