They asked about my thinking process in how I coded.
Software Qa Engineer Interview Questions
6,316 software qa engineer interview questions shared by candidates
they were QA questions and a few coding challenge
Q - OOP concepts, coding question(Swapping numbers), Selenium - locators, element table location, frames Cucumber - Cucumber design Git - Merge conflict
How will you build your credibility?
How would you count the number of occurrences of each number in an array of integers?
Questions on computer architecture and SOC architecture.
Give us the types of software testing. Tell us what are the parts of an STDL.
On Linux "kill -9 process id" What is the -9?
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 5121 - 5130 interview questions