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.
Senior Quality Engineer Interview Questions
4,465 senior quality engineer interview questions shared by candidates
Write a program to find the longest palindrome in a given string
Know your craft and be ready to answer fundamentals and "use case scenarios" type of questions.
Testing related processes and questions ???
Selenium and C# related questions for technical round Scrum or process related questions for managerial round
General QA questions, Processes, Methodologies, best practices, current and previous projects.. some technical questions related to SQL
How do you solve problems, which method do you use the most.
Regular Leetcode algorithms were asked
3 Java programming questions (leet code - easy to medium level) Automation- Selenium ( framework level ) & basic manual questions (test scenarios & accessibility testing)
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 3471 - 3480 interview questions