FINRA interview question

convert foo bar in an array to oof rab

Interview Answers

Anonymous

1 May 2017

// ca is a character array containing [f,o,o, , b, a, r] ArrayList charlist = new ArrayList(); String[] splitwords = (new String(ca)).split(" "); for(String word: splitwords) { StringBuffer temp = new StringBuffer(word).reverse(); for(int i=0; i

Anonymous

21 Sept 2016

(new StringBuilder("foo bar")).reverse().toString()

Anonymous

2 Sept 2016

what kind of questions came in online assesment ?Full programming questions or choose the best one .Appreciate your reply.What are the questions they have asked in telephonic interview?