Senior Quality Engineer Interview Questions

4,465 senior quality engineer interview questions shared by candidates

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
avatar

Senior QA Engineer

Interviewed at Visa Inc.

3.8
Jul 20, 2016

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

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); } } } }
avatar

Sr Software Quality Engineer

Interviewed at ServiceNow

4.1
May 9, 2024

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 3521 - 3530 interview questions

Glassdoor has 4,465 interview questions and reports from Senior quality engineer interviews. Prepare for your interview. Get hired. Love your job.