Software Development Engineer In Test Interview Questions

5,151 software development engineer in test interview questions shared by candidates

During the second round, one of the interviewers asked me to write code for two coding problems. Before writing the code, I explained my approach in detail, and she seemed satisfied with it. However, after I explained it, she insisted that I actually write the code out. Despite providing an optimized solution with O(n) complexity, she mentioned that it wasn’t optimized enough.
avatar

Software Development Engineer In Test (SDET)

Interviewed at Apna (India)

3.4
Mar 25, 2025

During the second round, one of the interviewers asked me to write code for two coding problems. Before writing the code, I explained my approach in detail, and she seemed satisfied with it. However, after I explained it, she insisted that I actually write the code out. Despite providing an optimized solution with O(n) complexity, she mentioned that it wasn’t optimized enough.

Conclusion We can conclude that both Java and Python languages have their own benefits. It really is up to you to opt a particular language for your project. Where Python is simple and succinct, Java is quick and more portable. While Python codes are dynamically-coded, Java is statically-coded. Python’s future is very glaring from where we see and presume that its future is assertive. Python is far from perfect but if we say that python is a future and emerging language than we have to agree that Java is present, it’s APIs are widely used.
Dec 29, 2020

Conclusion We can conclude that both Java and Python languages have their own benefits. It really is up to you to opt a particular language for your project. Where Python is simple and succinct, Java is quick and more portable. While Python codes are dynamically-coded, Java is statically-coded. Python’s future is very glaring from where we see and presume that its future is assertive. Python is far from perfect but if we say that python is a future and emerging language than we have to agree that Java is present, it’s APIs are widely used.

In a language of your choice, please provide a solution for the following problem. Problem: Given a sorted array of non-zero integers, remove the duplicate elements from the array and return the number of unique elements found. At the end of your algorithm, the array should contain unique elements. If the number of unique elements is less than the size of the array, fill the remaining indices with 0. For example: ex. Input - arr[] = {1, 2, 2, 3} ex. Output - arr[] = {1, 2, 3, 0} - return 3 ex. Input - arr[] = {1, 1, 1, 1} ex. Output - arr[] = {1, 0, 0, 0} - return 1 You should include your algorithm in the removec Duplicates method, whose inputs are the array and the length of the array.
Mar 21, 2022

In a language of your choice, please provide a solution for the following problem. Problem: Given a sorted array of non-zero integers, remove the duplicate elements from the array and return the number of unique elements found. At the end of your algorithm, the array should contain unique elements. If the number of unique elements is less than the size of the array, fill the remaining indices with 0. For example: ex. Input - arr[] = {1, 2, 2, 3} ex. Output - arr[] = {1, 2, 3, 0} - return 3 ex. Input - arr[] = {1, 1, 1, 1} ex. Output - arr[] = {1, 0, 0, 0} - return 1 You should include your algorithm in the removec Duplicates method, whose inputs are the array and the length of the array.

Viewing 711 - 720 interview questions

Glassdoor has 5,151 interview questions and reports from Software development engineer in test interviews. Prepare for your interview. Get hired. Love your job.