I applied through a staffing agency. I interviewed at Surya Software (Bengaluru) in Aug 2024
Interview
Many rounds were there.
1st was aptitude test. It was offline
Includes technical and quantitative.
2nd round was technical online interview
They asked to write 3 codes (dsa, oops)
Sql queries
Interview questions [1]
Question 1
Write a function to remove adjacent duplicates that takes a list of integers and returns a new list where consecutive duplicate elements are removed, but non-consecutive duplicates are kept.
Input: [1, 2, 2, 3, 2, 2, 4, 4, 4, 5]
Output: [1, 2, 3, 2, 4, 5]