Aller au contenuAller au pied de page
  • Emplois
  • Entreprises
  • Salaires
  • Pour les employeurs

      Boostez votre carrière

      Découvrez votre salaire potentiel, décrochez des emplois de rêve et partagez vos témoignages de manière anonyme.

      employer cover photo
      employer logo
      employer logo

      ServiceNow

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur ServiceNow | Offres d’emploi chez ServiceNow | Salaires chez ServiceNow | Avantages sociaux chez ServiceNow
      Entretiens chez ServiceNowEntretiens d’embauche pour Sr Software Quality Engineer chez ServiceNowEntretien chez ServiceNow


      Glassdoor

      • À propos
      • Récompenses
      • Blog
      • Nous contacter
      • Guides

      Employeurs

      • Compte employeur gratuit
      • Centre employeur
      • Blog pour les employeurs

      Informations

      • Aide
      • Règles de la communauté
      • Conditions d'utilisation
      • Confidentialité et choix publicitaires
      • Ne pas vendre ni partager mes informations
      • Outil de consentement aux cookies

      Travailler avec nous

      • Annonceurs
      • Carrières
      Télécharger l'application

      • Parcourir par :
      • Entreprises
      • Emplois
      • Lieux

      Copyright © 2008-2026. Glassdoor LLC. « Glassdoor », son logo, « Worklife Pro » et « Bowls » sont des marques déposées de Glassdoor LLC.

      Entreprises suivies

      Tenez-vous au courant des dernières opportunités et profitez de conseils d’initiés en suivant les entreprises de vos rêves.

      Recherche d’emplois

      Obtenez des recommandations et des mises à jour personnalisées en démarrant vos recherches.

      Entretien pour Sr Software Quality Engineer

      9 mai 2024
      Candidat à l'entretien anonyme
      Hyderâbâd

      Autres retours d’entretien d’embauche pour un poste comme Sr Software Quality Engineer chez ServiceNow

      Entretien pour Sr Software Quality Engineer

      31 juil. 2025
      Candidat à l'entretien anonyme
      Aucune offre
      Expérience négative
      Entretien moyen

      Candidature

      J'ai postulé en ligne. J'ai passé un entretien chez ServiceNow en juil. 2025

      Aucune offre
      Expérience négative
      Entretien difficile

      Candidature

      J'ai postulé en ligne. J'ai passé un entretien chez ServiceNow (Hyderâbâd) en mai 2024

      Entretien

      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

      Questions d'entretien [9]

      Question 1

      Leet Code - Write code and explain for "Minimum Time to Complete Trips"
      Répondre à cette question

      Question 2

      What is Transient keyword in Java?
      Répondre à cette question

      Question 3

      What is Covariant Return Type in Java?
      Répondre à cette question

      Question 4

      What are Generics in Java, have you used anywhere in your automation code?
      Répondre à cette question

      Question 5

      What is Abstraction and Interfaces? Differences ? Why one is better preferred and why?
      Répondre à cette 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); } }
      Répondre à cette 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); } } } }
      Répondre à cette question

      Question 8

      What is Explicit Wait and in which conditions you have used in your automation testing? Write the code for that?
      Répondre à cette question

      Question 9

      What are class loader and class.forname in Java?
      Répondre à cette question
      2
      Le processus a pris 1 semaine. 

      Entretien

      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.

      Questions d'entretien [1]

      Question 1

      String questions, loop questions, xpaths, payment gateway scenarios
      Répondre à cette question

      Entretien pour Senior Software Quality Engineer

      13 juin 2025
      Candidat à l'entretien anonyme
      Aucune offre
      Expérience neutre
      Entretien moyen

      Candidature

      J'ai postulé en ligne. Le processus a pris 4 jours. J'ai passé un entretien chez ServiceNow en juin 2025

      Entretien

      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.

      Questions d'entretien [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
      Répondre à cette question