Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      ServiceNow

      Engaged employer

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: ServiceNow reviews | ServiceNow jobs | ServiceNow salaries | ServiceNow benefits
      ServiceNow interviewsServiceNow Sr Software Quality Engineer interviewsServiceNow interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Centre
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy and Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalised job recommendations and updates by starting your searches.

      Sr Software Quality Engineer Interview

      9 May 2024
      Anonymous interview candidate
      Hyderābād

      Other Sr Software Quality Engineer interview reviews for ServiceNow

      Sr Software Quality Engineer Interview

      31 Jul 2025
      Anonymous interview candidate
      No offer
      Negative experience
      Average interview

      Application

      I applied online. The process took 1 week. I interviewed at ServiceNow in Jul 2025

      No offer
      Negative experience
      Difficult interview

      Application

      I applied online. I interviewed at ServiceNow (Hyderābād) in May 2024

      Interview

      Asked very difficult questions, like leet code hard problem, advance Java questions. For automation engineer related technologies questions didn't asked. 1st time i have faced different interview process, other than worked technologies

      Interview questions [9]

      Question 1

      Leet Code - Write code and explain for "Minimum Time to Complete Trips"
      Answer question

      Question 2

      What is Transient keyword in Java?
      Answer question

      Question 3

      What is Covariant Return Type in Java?
      Answer question

      Question 4

      What are Generics in Java, have you used anywhere in your automation code?
      Answer question

      Question 5

      What is Abstraction and Interfaces? Differences ? Why one is better preferred and why?
      Answer question

      Question 6

      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); } }
      Answer question

      Question 7

      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); } } } }
      Answer question

      Question 8

      What is Explicit Wait and in which conditions you have used in your automation testing? Write the code for that?
      Answer question

      Question 9

      What are class loader and class.forname in Java?
      Answer question
      2

      Interview

      It has multiple stages. 1st Tech round: 70% java 30 % testing - Very Good experience - Questions which are relevant to QA 2nd Tech round: Theory exam. Please be prepared for bookish questions. Questions will be fired on you like MCQs. Interviewer is using ChatGPT. He is prioritising his answers over approach which is easy, faster, and standard.

      Interview questions [1]

      Question 1

      String questions, loop questions, xpaths, payment gateway scenarios
      Answer question

      Senior Software Quality Engineer Interview

      13 Jun 2025
      Anonymous interview candidate
      No offer
      Neutral experience
      Average interview

      Application

      I applied online. The process took 4 days. I interviewed at ServiceNow in Jun 2025

      Interview

      Interview was for 1 hour each and technical. First round level was similar among questions, second round coding question was difficult but rest of it was same as first round. Level of questions in round 2 was not consistent. The only focus was if you can solve the coding problem.

      Interview questions [1]

      Question 1

      Find all combinations of a given string, write xpath for live website, palindrome, second largest number in an array, write test cases for a scenario
      Answer question