I applied online. The process took 5 weeks. I interviewed at CareerBuilder (Atlanta, GA) in Nov 2016
Interview
1. 30 min phone call with CareerBuilder recruiter
2. Sent 2 easy coding questions over email from recruiter
3. Brought onsite to interview with the team. Coded a question on a whiteboard and had technical chat.
All of the questions are below.
Interview questions [5]
Question 1
Question #1 sent over email:
Given a string, write a function or method that takes in that string, and returns the same string in reverse order.
· Example: Given the string “Hello”, your program would return “olleH”
· Do not assume that “Hello” is the only string it will handle
Question #2 sent over email:
Given a string, return the character count for each distinct character in the string.
· Example: "abacca" -> a: 3, b: 1, c: 2
· Once again, do not assume that “abacca” is the only string it will handle
Whiteboard question onsite:
Write a function to convert any roman numeral string to its equivalent integer. You may assume that we we not send it anything that is not a valid roman numeral string.