I applied through an employee referral. The process took 2 weeks. I interviewed at QualityAI (Bengaluru) in May 2025
Interview
Disappointing end at QualiTest
The first two rounds went really well, and I was hopeful. However, in the third round, the interviewer barely gave me a chance to speak and oddly started answering his own questions. He then accused me of cheating, which was upsetting—I even showed him my surroundings to clarify, after which he seemed satisfied.
Since then, I haven’t received any update. It’s been over two weeks, and the HR has completely ghosted me—no rejection mail, no feedback, nothing. At the very least, candidates deserve clear communication and closure.
Interview questions [1]
Question 1
You are given an array of strings. For each word in the array, you need to check whether its reverse exists elsewhere in the same array.
If the reversed version of the word is present, mark it with a count of 1, otherwise 0.
Finally, return the count for each original word in the same order.
For example:
Input → ["hello", "world", "olleh"]
Output → {"hello": 1, "world": 0, "olleh": 1}