Senior Software Quality Engineer Interview Questions

537 senior software quality engineer interview questions shared by candidates

Design your own hash map. Multiple programs were asked during the technical rounds (around 5-6 pgms). They test your technical knowledge very thoroughly. Make sure you are well prepared before attempting interviews in Informatica.
avatar

Senior Software QA Engineer

Interviewed at Informatica

4
Sep 25, 2014

Design your own hash map. Multiple programs were asked during the technical rounds (around 5-6 pgms). They test your technical knowledge very thoroughly. Make sure you are well prepared before attempting interviews in Informatica.

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 411 - 420 interview questions

See Interview Questions for Similar Jobs

Glassdoor has 537 interview questions and reports from Senior software quality engineer interviews. Prepare for your interview. Get hired. Love your job.