Fill in the missing code:

This recursive method returns "even" if the length of a give String is even, and "odd" if the length of the String is odd.

public static String foo(String s)

{

if (s.length() ==0)

return "even";

else if (s.length() = = 1)

return "odd";

else

//your code goes here

}