Mostly tricky programming questions or puzzles
Software Quality Engineer Interview Questions
4,934 software quality engineer interview questions shared by candidates
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.
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.
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); } } } }
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?
They ask me about some linux command.
Describe RNA nd dna etc
Viewing 3941 - 3950 interview questions