I applied online. The process took 2 weeks. I interviewed at GoDaddy in Apr 2015
Interview
Simple chatty screening to see if you are still interested in the job. Then a 1 hour technical live coding interview.
The interview questions were beginner level, but the coding exercise I thought was pretty advanced. just one question, pass or fail.
I actually thought this was more advanced knowledge than the senior level interviews I've had.
Interview questions [2]
Question 1
Given two strings of words create an algorithm to return all the words that occur in only one of the two strings. A word can be in one string many times and still pass as long as it's not in the other.
Using a nested for() loop is inefficient, can you do it more efficient than the native String.indexOf() method? Without nesting for loops or recursion.