Yodlee interview question

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

Interview Answers

Anonymous

Sep 7, 2014

Hey What were the questions asked in coding round??

2

Anonymous

Jul 28, 2015

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

Anonymous

Aug 13, 2016

what was the GD topic