public class SemesterUtilities4
{

    public static String startingMonth( Sessions semester)
    {
       String      month;
       month = "N/A";  // avoides compiler problem
		 
		 
		        if (semester.equals(Sessions.SPRING))
				   { 
					 month = "January";
					 }
		         else if  (semester.equals(Sessions.SUMMER))
					{
					 month = "May";
					 }
				   else if (semester.equals (Sessions.FALL))
					{ 
					month = "August";
					}
       return month;       
    }



}
