I applied through other source. The process took 1 week. I interviewed at Tech Consulting (Atlanta, GA) in Jun 2025
Interview
Someone reached out to me after I had applied for a different, more generic position on LinkedIn, and they said I would be a good fit for the role. I was told that the time scale before being hired would be incredibly short, as they had a group already to start on a certain date. We spoke on the phone briefly about the process: on online skills assessment, a pair programming assessment, and then a spoken interview. I completed their skills assessment, receiving positive feedback from the website for part of it, but wasn't told of my overall results nor was contacted again. I reached out to them several times since and have heard nothing.
Interview questions [5]
Question 1
String Challenge
Have the function StringChallenge(str) take the str parameter being passed and return the string in reversed order. For example: if the input string is "Hello World and Coders" then your program should return the string sredoC dna dlroW olleH.
Once your function is working, take the final output string and remove any characters (case-insensitive) from it that appear in your ChallengeToken. If the new final string is empty, return the string EMPTY.
ChallengeToken: 0123456789
What will the following JavaScript code output?
async function getData() {
return await Promise.resolve('Hello!');
}
const data = getData();
console.log(data);
How do you create a new React Native project from the command line?
- npx react-native init ProjectName
- react-native new ProjectName
- npx react-native new ProjectName
- new react-native ProjectName