Fullstack Developer applicants have rated the interview process at Moksa.ai with 3 out of 5 (where 5 is the highest level of difficulty) and assessed their interview experience as 100% positive. To compare, the company-average is 50% positive. This is according to Glassdoor user ratings.
Common stages of the interview process at Moksa.ai as a Fullstack Developer according to 1 Glassdoor interviews include:
In the technical round 2 of my interview, I was asked in-depth questions related to my previous projects and hands-on experience with the technologies mentioned in my resume. The interviewer focused on practical implementation, code optimization, and real-world problem-solving scenarios. I was also given a couple of problem statements to solve, where I had to explain my approach before coding. Alongside, I was asked about my understanding of system design, API integration, and debugging techniques. Overall, the round was more focused on evaluating my ability to apply concepts in real-time situations and my clarity of thought while solving technical challenges.
Interview questions [1]
Question 1
You are given an array of integers and a target value. Your task is to write a function that returns the indices of the two numbers in the array that add up to the target. Assume that each input will have exactly one solution, and the same element cannot be used twice. For example, if the input array is [10, 20, 30, 40] and the target is 30, the function should return [0, 1] because 10 + 20 = 30. Return the indices as a list or array.