Yodlee interview question

I was not able to code reversing a Query using recursion. :(

Interview Answers

Anonymous

7 Sept 2014

Hey What were the questions asked in coding round??

2

Anonymous

28 July 2015

static String reverse(String s) { if((s==null)||(s.length()<=1)) { return s; } return reverse(s.substring(1))+s.charAt(0); }

Anonymous

13 Aug 2016

what was the GD topic