Round 1 : Reverse a String Implement merge in a merge sort Top k frequent words in a file Round 2 It was with the director........Asked about resume and my previous qa experience at a company ...whiteboarding some QA stuff Round 3 Again with a director.....check whether a number is prime , convert string to integer Round 4 SQL joins Test cases privileges in unix SOAP REST Round 5 Bubble sort Junit annotations Round 6 Brain teasers
Sr Qa Engineer Interview Questions
5,817 sr qa engineer interview questions shared by candidates
Here are some of the questions that were asked: Java Program to reverse each String in a sentence = " Today is a Happy Day" , Output should be : " yadoT si a yppaH yaD". - Java program - if String= " ABC DEF" , output should be : A D B E C F - Questions on TestNG and the workflows, the order of execution with some scenarios - Why Web services and few questions on REST - what is the process followed in your project- say suppose we get any new requirements and then....??? Explain - Java - String, String Buffer, String Builder - Suppose String A= "ABCD", then A+test - does this give compile error. How string is immutable - Explain on Agile. Why Agile is better than Waterfall - Questions on Unix & SQL - Click on a button and nothing happens - what do you verify to debug - Gave a scenario and asked to identify the optimum scenarios.
Describe your framework. It takes a lot of imagination to ask this question.
On Linux "kill -9 process id" What is the -9?
Login page test cases, test cases for health product and smart watch
Rest APIs,Debugging,Challenges,Test scenarios
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 4611 - 4620 interview questions