smooth
2006-01-31 03:53:35 UTC
(1) Display each element of the array on a separate line (and this method should be called "toString()".
(2) Display a count of elements in the array.
(3) Convert each String contained in the array to lowercase and display.
(4) Convert each String contained in the array to uppercase and display.
(5) Write a method called "runAll()" that calls (executes) each of the methods above.
Write a second class that calls the runAll() method of the first class within its main() method. Second class is to be used for testing the functionality of the first class.