Question: QUESTION 9/13 Which input would return a value of true? Language: Java 2 public boolean isSpecial(String text) { String tempText = alterText(text); return text.equals(tempText); }

QUESTION 9/13 Which input would return a value of true? Language: Java 2 public boolean isSpecial(String text) { String tempText = alterText(text); return text.equals(tempText); } 4 5 7 8 9 public String alterText(String inputText) { if(inputText == null || inputText.isEmpty() { return inputText; } return inputText.charAt(inputText.length() - 1) + alter Text(inputText.substring(0, inputText.length() - 1)); } 10 11 12 @ Image not displaying? "ab1221ba" "aaabbb" "abcd4321" "abcdef" "ala1b2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
