CS 151: Homework 6 -- Deadline: May 7, 2008. Problem 1. Write a program that accepts a string of characters terminated by a period and determines whether the string (without the period) is a palindrome. Assume that the input contains only letters and blanks. Assume also that the input is at most 30 characters long. Disregard blanks when deciding if a string is a palindrome and consider upper and lower case version of the same letter to be equal. Have a static method palindrome public static boolean (char[] a, int number) that accepts a char array containing the characters of the input string, and an integer defining the number of characters in the string. Problem 2. See the book, page 433 -- project 7.6