Writ-e a class, SortedStringList, a subclass of ArrayList, which has 2 methods;
1 add - accepts a String as a parameter and inserts it into the list at its proper position so the list always remains sorted alphabetically.
2 findPos - a helper method used by add to find the postition where the string should be inserted.