Mostly tricky programming questions or puzzles
Software Qa Engineer Interview Questions
6,316 software qa engineer interview questions shared by candidates
No technical questions in the interview
Some questions that were asked were: 1. How do you connect to a database to get data? 2. How do you do cross browser testing? etc.
It's totally based on your resume + some basic live testing scenarios
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); } } } }
Viewing 5051 - 5060 interview questions