Senior Software Quality Engineer Interview Questions

123 senior software quality engineer interview questions shared by candidates

1. Must strong in mobile automation and espresso automation, they need ppl to convert the existing appium test scripts to Android native testing framework. 2. find the second largest value from the array without using any sorting. 3. Group the same number(s) in the asc/desc order
avatar

Senior Software Engineer - Quality

Interviewed at PayPal

3.6
Jul 12, 2022

1. Must strong in mobile automation and espresso automation, they need ppl to convert the existing appium test scripts to Android native testing framework. 2. find the second largest value from the array without using any sorting. 3. Group the same number(s) in the asc/desc order

SQL joins count of a table in SQL. What is non-functional testing Asked about scrum, it's roles. Asked some management level questions, that if one of my colleagues is not working properly due to his home problem & you have some work which is pending due to him what will you do.
avatar

Senior Software Quality Assurance Engineer

Interviewed at S&P Global

4.1
Jan 18, 2018

SQL joins count of a table in SQL. What is non-functional testing Asked about scrum, it's roles. Asked some management level questions, that if one of my colleagues is not working properly due to his home problem & you have some work which is pending due to him what will you do.

Write test cases for this below code? class Product { private String name; private double price; public Product(String name, double price) { this.name = name; this.price = price; } public String getName() { return name; } public double getPrice() { return price; } } class ShoppingCart { private List items; public ShoppingCart() { items = new ArrayList<>(); } public void addItem(Product product) { items.add(product); } public List getItems() { return items; } public double calculateTotal() { double total = 0; for (Product item : items) { total += item.getPrice(); } return total; } } class DiscountManager { public double applyDiscount(ShoppingCart cart, double discountRate) { double total = cart.calculateTotal(); return total * (1 - discountRate); } } public class Main { public static void main(String[] args) { Product product1 = new Product("Laptop", 1000); Product product2 = new Product("Mouse", 20); ShoppingCart cart = new ShoppingCart(); cart.addItem(product1); cart.addItem(product2); DiscountManager discountManager = new DiscountManager(); double discountedPrice = discountManager.applyDiscount(cart, 0.1); System.out.println("Discounted price: " + discountedPrice); } }
avatar

Sr Software Quality Engineer

Interviewed at ServiceNow

4.1
May 9, 2024

Write test cases for this below code? class Product { private String name; private double price; public Product(String name, double price) { this.name = name; this.price = price; } public String getName() { return name; } public double getPrice() { return price; } } class ShoppingCart { private List items; public ShoppingCart() { items = new ArrayList<>(); } public void addItem(Product product) { items.add(product); } public List getItems() { return items; } public double calculateTotal() { double total = 0; for (Product item : items) { total += item.getPrice(); } return total; } } class DiscountManager { public double applyDiscount(ShoppingCart cart, double discountRate) { double total = cart.calculateTotal(); return total * (1 - discountRate); } } public class Main { public static void main(String[] args) { Product product1 = new Product("Laptop", 1000); Product product2 = new Product("Mouse", 20); ShoppingCart cart = new ShoppingCart(); cart.addItem(product1); cart.addItem(product2); DiscountManager discountManager = new DiscountManager(); double discountedPrice = discountManager.applyDiscount(cart, 0.1); System.out.println("Discounted price: " + discountedPrice); } }

Viewing 41 - 50 interview questions

See Interview Questions for Similar Jobs

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