Question: Please implement each of these small tasks in a single Java class: 1. Implement a method, public static int iterativeFactorial(int) to compute the factorial of
Please implement each of these small tasks in a single Java class:
1. Implement a method, public static int iterativeFactorial(int) to compute the factorial of the specied int using any Java looping statement. Please do not use recursion for this method.
2. Implement a method, public static int recursiveFactorial(int) to compute the factorial of the specied int using recursion. Please do not use any Java looping statements for this method.
3. Implement a method, public static boolean isEven(int) to determine whether the specied int is even or not.
4. Implement a method, public static boolean isOdd(int) to determine whether the specied int is odd or not. This methods implementation shall directly use Homework1.isEven.
5. Implement a method, public static boolean isPalindrome(String) to determine whether the specied String is a palindrome or not. A palindrome is a phrase that reads the same forward and backward; not including punctuation, spaces, or letter case. Some example palindromes include: (the empty string) a A OO Ava Taco cat Was it a car or a cat I saw?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
