Repository files navigation Java Quiz: Week 10, Day 3 This quiz has 2 sections:
fundamentals
StringEvaluatorPalindromEvaluator object orientation
PalindromeObjectStringAssemblerStringEvaluatorObject Description The purpose of this class is to evaluator palindromes. A palindrome is a word or phrase that is spelled the same forwards and backwards.
the word racecar is an example of a palindrome Methods to Complete String reverseString(String str)Boolean isPalindrome(String str)String[] getAllPalindromes(String str)Description The purpose of this class is to create a utility class for String Methods to Complete String[] getAllSubstrings(String string)String[] getCommonSubstrings(String string1, String string2)String[] getLargestCommonSubstring(String string1, String string2)Section 2 - Object Orientation Description The purpose of this class is to create an object capable of evaluating palindromes. Methods to Complete String reverseString()Boolean isPalindrome()String[] getAllPalindromes()Description The purpose of this class is to create a wrapper class for StringBuilder Methods to Complete StringAssembler append(String string)String append()Description The purpose of this class is to create a wrapper object for StringEvaluator Methods to Complete String[] getAllSubstrings()String[] getCommonSubstrings(String string2)String[] getLargestCommonSubstring(String string2)
You can’t perform that action at this time.