class ReverseString{
static void message(String s, int i) {
if(i<s.length()) {
char ch=s.charAt(i); message(s,i+1);
System.out.print(ch); } }
public static void main(String[] args){ message("Welcome", 0); }
}
Which of the following statements is the recursive condition in the above code?