I applied through university. The process took 1 day. I interviewed at Swabhav (Andheri) in May 2025
Interview
The technical test takes place in a small cramped apartment near the Andheri station (West Side), the workplace itself is just a single table around which the employees sit. Anyways, the technical test itself was quite easy with certain fixed questions asked every time, I'll list them below.
Interview questions [3]
Question 1
Write a function that accepts an array of n integers, array[]. Create a new array, prod[] such that prod[i] is equal to the product of all the elements of array[] except array[i]. The function should have a time complexity of O(n) and handle all possible input scenarios effectively.
Ex. Array{}={2,3,4,5} then prod[]={60,40,30,24}
Create a function that accepts an array of integers and finds second largest element from that array.
Ex. If arr1 = {1,2,3,4}
Then getSecondLargestNumber(arr1) -> 3
Find all duplicate elements in an array of length n.
The array contains elements only between 1 and n (1 and n included)
Element in array can only be present once or twice.
Ex:
Input Output
[1,2,3,2,4] 2
[1,2,2,3,3,4] 2,3
[4,3,6,7,3,1,2] 3
I applied online. I interviewed at Swabhav in May 2025
Interview
I applied through the website, offcampus
So it shortlisting resume based selection of candidates. The shortlisted candidates, are then selected for interview.
Before the interview, they gave 3 coding question to solve, Also you cant use nested loops, in any of the question, if used rejected.
i) Print the leader element in array(check interview experience)
ii) Merge 2 sorted arrays without using extra space(tricky one)
iii) Check if the numbers in the array is palindrome or not
After the coding round, candidates are asked to explain the code itself, and OOPs, resume based questions. If you are selected, you will be mailed for further rounds
Interview questions [1]
Question 1
Explain the codes you solved, OOPs, internships, projects
I applied through university. I interviewed at Swabhav (Mumbai)
Interview
very smooth and interesting process where i was able to answer most of the questions as it was a on campus placement it was easy first was aptitute and followed by personel interview in which you have 3 dsa questions after which they ask you the dry run of the code