Basic Db, API automation, testNg in depth, core java fundamentals, selenium concepts and automation framework related questions
Senior Quality Interview Questions
1,836 senior quality interview questions shared by candidates
Rest APIs,Debugging,Challenges,Test scenarios
Find 2nd largest number in an array. Find Locator of an Element on UI. Re arrangement of Array in Max-Min form. Check if an array has pythagorean tripley.
String questions, loop questions, xpaths, payment gateway scenarios
REST API/ DB / SELENIUM interview questions
HR round included typical questions, why I am looking for a job change etc. Interview with hiring manager was also bit non technical, like how to deal with people and so on The assignment was also very easy, added a project to test a small web application where you need to log in, create some customer and company using selenium.
What's your process for writing quality assurance documentation? How do you ensure your team follows quality assurance procedures? Describe a time when you identified an issue in the production process that could have caused a product defect. How did you handle it? API Testing and Response Codes
How do you solve problems, which method do you use the most.
What is your day to day like at your current job?
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 1471 - 1480 interview questions