How do you solve problems, which method do you use the most.
Senior Quality Engineer Interview Questions
1,106 senior quality engineer interview questions shared by candidates
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); } } } }
Write test scenarios for a public website
Paired testing exercise of an online app to write tests and find bugs.
1. How and What will you test differently in Mobile Application testing which is different and unique from Web testing? 2.Case study on Gpay transactions, rewards and Questions to be asked on User requirements
It was with respect to selenium, bash and Python/Java
Asked mostly about my experience
Where I would start with the test automation on the project
How much experience do you have with Kaizen?
More interested in the automation testing
Viewing 891 - 900 interview questions