Create a method isPalindrome(String input) that checks whether or not a String is a palindrome. Check the wikipedia entry for palindrome to find out what it is.
isPalindrome(String input)
(Hint, you can use the reverse String method to help you out!)