FINRA Interview Question

convert foo bar in an array to oof rab

Interview Answers

Anonymous

May 1, 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

Sep 21, 2016

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

Anonymous

Sep 2, 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?