d. Problem 4. Devise a function that receives a string and determines if it is a palindrome. Make the function evaluate palindromes in a case insensitive way. So, the input "Able was I ere I saw Elba" should count as a palindrome.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Please help me with these question. I am having trouble understanding what to do. Please use HTML, CSS, and JavaScript

Thank you

d. Problem 4. Devise a function that receives a string and determines if it is a
palindrome. Make the function evaluate palindromes in a case insensitive way.
So, the input "Able was I ere I saw Elba" should count as a palindrome.
Approach:
Let's assume the signature of our function is palindrome(s) where s is the input
string. In the body of your function, check if the length of s is less than 2. If so, just
return true because a string containing one letter is the same backwards and
forwards. If length of s is greater than 2, take the first and last letters off of the string
and determine if they are equal. If not, return false. But if they are equal, recursively
call palindrome on the sub-string of s that excludes both the first and last
character. That means the length of the new string should be two characters less than
that of the original string.
Writing any explicit loop in your code results a 0 for this question. Remember to provide
pre- and post- conditions.
Now copy/paste the following trace table in your Word file and trace your function
palindrome (s) for when s is initially "racecar". As a guideline, we have populated
the tables with the values for the first call and the corresponding returned values for
each of those calls. As ever, the first table is populated top down (i.e. time elapses
from row x torow x+1) whereas the returned value table is populated bottom-up
(i.e. time elapses from row x to row x-1). You may want to use debugging features
console.log to observe these values as your program runs.
call#
S
1
"racecar"
2
"aceca"
value returned to this
call
TRUE
TRUE
Transcribed Image Text:d. Problem 4. Devise a function that receives a string and determines if it is a palindrome. Make the function evaluate palindromes in a case insensitive way. So, the input "Able was I ere I saw Elba" should count as a palindrome. Approach: Let's assume the signature of our function is palindrome(s) where s is the input string. In the body of your function, check if the length of s is less than 2. If so, just return true because a string containing one letter is the same backwards and forwards. If length of s is greater than 2, take the first and last letters off of the string and determine if they are equal. If not, return false. But if they are equal, recursively call palindrome on the sub-string of s that excludes both the first and last character. That means the length of the new string should be two characters less than that of the original string. Writing any explicit loop in your code results a 0 for this question. Remember to provide pre- and post- conditions. Now copy/paste the following trace table in your Word file and trace your function palindrome (s) for when s is initially "racecar". As a guideline, we have populated the tables with the values for the first call and the corresponding returned values for each of those calls. As ever, the first table is populated top down (i.e. time elapses from row x torow x+1) whereas the returned value table is populated bottom-up (i.e. time elapses from row x to row x-1). You may want to use debugging features console.log to observe these values as your program runs. call# S 1 "racecar" 2 "aceca" value returned to this call TRUE TRUE
Expert Solution
steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Function Arguments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education