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.