| preferred AP College board partner for AP classes
hard Solved by 1 students
Recursive Palindrome Method
< Prev
Next >

What is the output when the following program is executed?

public class Main {
    public static boolean isPalindrome(String s) {
        if(s.length() <= 1)
            return true;
        if(s.charAt(0) != s.charAt(s.length() - 1))
            return false;
        return isPalindrome(s.substring(1, s.length()-1));
    }
    public static void main(String[] args) {
        System.out.println(isPalindrome("radar"));
    }
}
A

radar

B

false

C

Compilation Error

D

true

Hint
Did You Know?
Explain Why
Explain All Answers
Check Answer
Show Correct Answer
Report Question

Question Leaderboard

Not enough data yet to show leaderboard.

No comments yet. Be the first to comment!

AI Tutor

How can I help?

APFIVE © 2020.
Email: apfive@apfive.org|Privacy Policy