It's totally based on your resume + some basic live testing scenarios
Software Qa Engineer Interview Questions
6,321 software qa engineer interview questions shared by candidates
What is the difference between a struct and a class in C++?
how to reverse a linked list, time complexity, space complexity, how to optimize this algorithm, what is the advantages and drawbacks of your solutions
Describe your role at your last job.
What is the most challenging technical obstacle that you encountered?
Where do you see yourselves in 5 years. Long term and short term goals. My projects in details and 2 coding rounds.
Anything wrong in this code and Explain? import java.util.ArrayList; import java.util.Iterator; import java.util.List; public class ConcurrentModificationExample { public static void main(String[] args) { List numbers = new ArrayList<>(); numbers.add(1); numbers.add(2); numbers.add(3); Iterator iterator = numbers.iterator(); while (iterator.hasNext()) { Integer number = iterator.next(); if (number.equals(2)) { numbers.remove(number); } } } }
Unwanted questions and Interview panel was confused with their own questions
Q: What did you do in your previous roles? Q: What is something you are proud of? Q: Do you have an academic background or are you studying?
what is the difference between quit and close methods?
Viewing 5061 - 5070 interview questions