Given a string, determine if its a palindrome. Use any language
Sigiloso
public boolean isPalindrom(String text) { StringBuffer stringBuffer = new StringBuffer(text); return stringBuffer.reverse().toString().equals(text); } There are many ways to solve this question.