Spoke with recruiter who was informative and communicative about the process and where they currently were at with the role. Never heard back after speaking with recruiter but I did appreciate the nice and transparent conversation.
I applied online. I interviewed at DeepIntent (Pune) in May 2025
Interview
The interview process consisted of Hr phone call, one technical round. I was not selected, but the discussion covered a mix of programming, testing fundamentals, and practical test-case writing.
The interviewer asked questions from both programming and manual testing:
1. Coding Question – Array Pair Sum
I was given an input array:
[0,1,2,3,4,5,6,7,8,9]
and asked to write a program to print all pairs whose sum = 9.
Expected sample output:
(0,9)
(4,5)
(5,4)
(9,0)
2. Follow-up Coding Question – Remove Duplicate Pairs
I was then asked to modify the above solution so that duplicate pairs are not printed, ensuring each pair appears only once.
3. Manual Testing Questions
A few conceptual testing questions were asked, such as:
What is Smoke Testing?
What is Sanity Testing?
What is Bug Leakage?
4. Test Case Writing
I was asked to open any e-commerce website and write test cases related to UI, functionality, and workflow.
This was to evaluate my ability to think through real product scenarios.
Interview questions [1]
Question 1
The interviewer asked questions from both programming and manual testing:
1. Coding Question – Array Pair Sum
I was given an input array:
[0,1,2,3,4,5,6,7,8,9]
and asked to write a program to print all pairs whose sum = 9.
Expected sample output:
(0,9)
(4,5)
(5,4)
(9,0)
2. Follow-up Coding Question – Remove Duplicate Pairs
I was then asked to modify the above solution so that duplicate pairs are not printed, ensuring each pair appears only once.
3. Manual Testing Questions
A few conceptual testing questions were asked, such as:
What is Smoke Testing?
What is Sanity Testing?
What is Bug Leakage?
4. Test Case Writing
I was asked to open any e-commerce website and write test cases related to UI, functionality, and workflow.
I applied through a recruiter. I interviewed at DeepIntent (Pune) in Aug 2025
Interview
The interview consisted of three technical rounds. During the first round, I was asked about my projects and my resume was thoroughly reviewed. The second round included two medium-level SQL questions and a request to write a sample Python script for XGBoost modeling. The third and final round was with the CTO. Ultimately, I was told that my lack of experience in big data.
Interview questions [1]
Question 1
I have a table with date, campaignid, and impression columns. I need to write a SQL query to return campaignid, date, impression, and the percentage of daily impressions for each campaign.