I applied through a recruiter. I interviewed at Anonymous Content (Pune) in May 2026
Interview
1. Technical round 1
2. Technical round 2
3. HR round
This interview process can vary depending on role needs, I was being interviewed for Solutions Architect.
Prepare well for coding rounds. This is something new pattern I saw.
Interview questions [1]
Question 1
coding question 1: arr = [4,1,3,5,6,4,7,4,2]
#k = 4
#w = 3
#find if k is part of all non-overlapping windows of size w in single loop
#constraints- no additional array, no hashmaps, single loop
coding question 2: remove duplicates from list of array without creating new array, without using inbuilt functions, without using more than 1 loop.