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); } } } }
Senior Quality Engineer Interview Questions
4,466 senior quality engineer interview questions shared by candidates
Write test scenarios for a public website
Testing related processes and questions ???
Know your craft and be ready to answer fundamentals and "use case scenarios" type of questions.
Just what we have put on resume
Question were asked from python and android automation.
How can you rate yourself in the skills mentioned?
Test case management Bug tracking Performance testing BDD framework
1) Basic SDLC and STLC
Paired testing exercise of an online app to write tests and find bugs.
Viewing 3521 - 3530 interview questions