Java please help (Palindrome integer) Write the methods with the following heale
ID: 643307 • Letter: J
Question
Java please help (Palindrome integer) Write the methods with the following healers // Return the reversal of an integer, i.e., reverse(456) returns (456) returns 654 public static int reverse(int number) // Return true if number is a polindrome public static boolean isPalindrome(int number) Use the reverse method to implement isPalindrome. A number is a palindrome if its reversal is the same as itself. Write a test program that prompts the user to enter an integer and reports whether the integer is a Palindrome. Java please helpExplanation / Answer
Java program to check a number is palindrome or not...