I applied through university. I interviewed at Verticurl (Coimbatore) in Feb 2026
Interview
2 Rounds
1 - GD with a group of 10 (Survival of the fittest),
Topics were easy
2 - PPT Round + Technical Round with Technical person
Good and Calm environment which made the Candidates to feel the pressure less.
Interview questions [1]
Question 1
Asked from the Details which we provide from our resume
I applied through a staffing agency. I interviewed at Verticurl (Noida) in Mar 2025
Interview
3 step
1 - hacker rank test
2- tech lead took interview
Never smiled once , no interaction at all sits there turns on camera when asked by hr.
Asks in the end of interview how many years of experience Ihad.
Imagine didnt even go through the resume.
All I can say is people need serious interview training
Interview questions [1]
Question 1
Basic posts react app challenge
Write jest based tests for the components
I applied through other source. The process took 2 weeks. I interviewed at Verticurl (Gurgaon, Haryana) in Mar 2025
Interview
I have interviewed as Senior .NET Engineer, points are based accordingly
* The entire interview process heavily focuses on the TDD approach.
* You may ask the interviewer for permission to use the internet (Google) during the coding test if needed.
Interview questions [2]
Question 1
Implement a C# console application following the TDD approach to replace all occurrences of a substring (S1) in a given string (S) with another substring (S2).
Example:
Input: S = "abababa", S1 = "aba", S2 = "a"
Output: "aba"
Explanation: "abababa" is modified by replacing "aba" at positions [0,2] and [4,6] with "a", resulting in "aba".
Conditions & Rules:
S can have a maximum length of 50 characters.
No spaces allowed in any of the strings; ignore spaces if present.
Only alphanumeric characters are allowed; special characters are not permitted.
None of the strings (S, S1, S2) should be null or empty; handle such cases gracefully.
S1 (substring to be replaced) cannot be longer than S.