Create a NOTEPAD or PDF file that restates the problem in your own words, specif
ID: 3872651 • Letter: C
Question
Create a NOTEPAD or PDF file that restates the problem in your own words, specifies what input is needed from whomever is using the process, what output is expected, the step by step process (algorithm) to get the output from the input, and test data (input for which you know the expected output for each of the 3 problems given below. You should not write any actual python code. Make sure the problem statement is in your own words and is descriptive enough so someone not reading the problem description given to you will understand what is being done.
Problem: Develop a process to determine if a integer number is a numeric palindrome. A numeric palindrome is a number that is the same if the digits are given in reverse order. For example, the numbers 257752 and 96369 are numeric palindromes whereas the numbers 2371 and 28746 are not numeric palindromes
Explanation / Answer
Problem: Given an integer, write a function that returns true if the given number is a palindrome, else false. For example, 12321 is palindrome, but 1451 is not palindrome
Input: Integer
Output : True Or False
Algorithm:
1.) Get input number num.
2.) Reverse it:
3.) Then compare the revers_number with num. If both are same, then return True, else False.