CSE 250 – Spring 2009 In-lab Exercise 1 Due: February 2 Total Points possible: You earned: ************************************************************************************ [A] isPalindrome(number) function (28% - 4 points per subsection) [A1] Correctly reports that a single digit number is a palindrome You earned: Comments: [A2] Correctly identifies a 2-digit palindrome You earned: Comments: [A3] Correctly identifies a 2-digit non-palindrome You earned: Comments: [A4] Correctly identifies a 2n-digit palindrome You earned: Comments: [A5] Correctly identifies a 2n+1-digit palindrome You earned: Comments: [A6] Correct identifies a 2n-digit non-palindrome You earned: Comments: [A7] Correctly identifies a 2n+1-digit non-palindrome You earned: Comments: *********************************************************************************** [B] isPalindrome(string) function (36% - 3 points per subsection) [B1] Returns that the empty string is a palindrome You earned: Comments: [B2] Returns that a 1-character string is a palindrome You earned: Comments: [B3] Correctly identifies a 2-character palindrome You earned: Comments: [B4] Correctly identifies a 2-character non-palindrome You earned: Comments: [B5] Correctly identifies a 2n-character palindrome where the string contains just letters You earned: Comments: [B6] Correctly identifies a 2n+1-character palindrome where the string contains just letters You earned: Comments: [B7] Correctly identifies a 2n-character non-palindrome where the string contains just letters You earned: Comments: [B8] Correctly identifies a 2n+1-character non-palindrome where the string contains just letters You earned: Comments: [B9] Correctly identifies a 2n-character palindrome where the string contains any symbol You earned: Comments: [B10] Correctly identifies a 2n+1-character palindrome where the string contains any symbol You earned: Comments: [B11] Correctly identifies a 2n-character non-palindrome where the string contains any symbol You earned: Comments: [B12] Correctly identifies a 2n+1-character non-palindrome where the string contains any symbol You earned: Comments: *********************************************************************************** [C] countVowels function (24% - 4 points per subsection) [C1] Returns the correct number of vowels when the empty string is passed in You earned: Comments: [C2] Returns the correct number of vowels on a string containing just letters, but having no vowels in it You earned: Comments: [C3] Returns the correct number of vowels on a string with letters & other symbols, but having no vowels in it You earned: Comments: [C4] Returns the correct number of vowels on a string containing no vowels except y You earned: Comments: [C5 Returns the correct number of vowels on a string containing just letters, but having vowels in it You earned: Comments: [C6] Returns the correct number of vowels on a string containing letters & other symbols, but having vowels in it You earned: Comments: ************************************************************************************ [D] Driver File and Submission (12%) [D1 – 7, 3, 0 points possible] Driver.cpp file submitted and shows a reasonable effort in testing the functionality of the functions written You earned: Comments: [D2 – 5, 2, 0 points possible] Directory for submission created and zipped for submission You earned: Comments: