Ir al contenidoIr al pie de página
  • Empleos
  • Empresas
  • Sueldos
  • Para empleadores

      Impulsa tu carrera profesional

      Averigua cuánto podrías ganar, encuentra el empleo perfecto y comparte información sobre tu vida laboral y personal de forma anónima.

      employer cover photo
      employer logo
      employer logo

      ServiceNow

      Empleador activo

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de ServiceNow | Empleos en ServiceNow | Sueldos en ServiceNow | Prestaciones en ServiceNow
      Entrevistas en ServiceNowEntrevistas para el cargo de Senior Software Quality Engineer en ServiceNowEntrevista en ServiceNow


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empleadores

      • Cuenta de empleador gratuita
      • Centro de empleador

      Información

      • Ayuda
      • Pautas
      • Condiciones de uso
      • Privacidad y opciones de anuncios
      • No vender ni compartir mi información
      • Herramienta de autorización de cookies

      Trabaja con nosotros

      • Anunciantes
      • Oportunidades laborales
      Descargar aplicación

      • Buscar por:
      • Empresas
      • Empleos
      • Ubicaciones

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor", "Worklife Pro", "Bowls" y sus logotipos son marcas comerciales registradas de Glassdoor LLC.

      Empresas seguidas

      Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información desde adentro.

      Búsquedas de empleo

      Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.

      Entrevista para Senior Software Quality Engineer

      24 de abr de 2021
      Candidato de entrevista anónimo
      Singapur

      Otras evaluaciones sobre las entrevistas para el cargo de Senior Software Quality Engineer en ServiceNow

      Entrevista para Sr Software Quality Engineer

      31 de jul de 2025
      Candidato de entrevista anónimo
      Sin ofertas
      Experiencia negativa
      Entrevista promedio
      Sin ofertas
      Experiencia negativa
      Entrevista difícil

      Solicitud

      Me postulé en línea. El proceso tomó más de 2 meses. Acudí a una entrevista en ServiceNow (Singapur) en feb 2021

      Entrevista

      Worst Interview Experience : Four Technical round and 1 managerial round after that no response from Recruiter. Please respect candidate time if someone has spent 7-8 hours then atleast a mail with feedback. My Request to all QA Community person, please do not go for Interview in Service now

      Preguntas de entrevista [1]

      Pregunta 1

      Selenium/java/Testng
      Responder pregunta

      Solicitud

      Me postulé en línea. El proceso tomó 1 semana. Acudí a una entrevista en ServiceNow en jul 2025

      Entrevista

      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.

      Preguntas de entrevista [1]

      Pregunta 1

      String questions, loop questions, xpaths, payment gateway scenarios
      Responder pregunta

      Entrevista para Senior Software Quality Engineer

      13 de jun de 2025
      Candidato de entrevista anónimo
      Sin ofertas
      Experiencia neutra
      Entrevista promedio

      Solicitud

      Me postulé en línea. El proceso tomó 4 días. Acudí a una entrevista en ServiceNow en jun 2025

      Entrevista

      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.

      Preguntas de entrevista [1]

      Pregunta 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
      Responder pregunta

      Entrevista para Sr Software Quality Engineer

      9 de may de 2024
      Candidato de entrevista anónimo
      Hyderabad
      Sin ofertas
      Experiencia negativa
      Entrevista difícil

      Solicitud

      Me postulé en línea. Acudí a una entrevista en ServiceNow (Hyderabad) en may 2024

      Entrevista

      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

      Preguntas de entrevista [9]

      Pregunta 1

      Leet Code - Write code and explain for "Minimum Time to Complete Trips"
      Responder pregunta

      Pregunta 2

      What is Transient keyword in Java?
      Responder pregunta

      Pregunta 3

      What is Covariant Return Type in Java?
      Responder pregunta

      Pregunta 4

      What are Generics in Java, have you used anywhere in your automation code?
      Responder pregunta

      Pregunta 5

      What is Abstraction and Interfaces? Differences ? Why one is better preferred and why?
      Responder pregunta

      Pregunta 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); } }
      Responder pregunta

      Pregunta 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); } } } }
      Responder pregunta

      Pregunta 8

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

      Pregunta 9

      What are class loader and class.forname in Java?
      Responder pregunta
      2