Ir para o conteúdoIr para a pasta
  • Vagas
  • Empresas
  • Salários
  • Para empresas

      Avance em sua carreira

      Descubra qual pode ser seu salário, conquiste a vaga dos seus sonhos e compartilhe insights de qualidade de vida com sigilo.

      employer cover photo
      employer logo
      employer logo

      ServiceNow

      Empresa engajada

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa ServiceNow | Vagas da empresa ServiceNow | Salários da empresa ServiceNow | Benefícios da empresa ServiceNow
      Entrevistas da empresa ServiceNowEntrevistas do cargo de Sr Software Quality Engineer da empresa ServiceNowEntrevista da empresa ServiceNow


      Glassdoor

      • Sobre
      • Prêmios
      • Blog
      • Fale conosco

      Empresas

      • Conta gratuita de empresa
      • Área da empresa
      • Blog para empresas

      Informações

      • Ajuda
      • Regras da Comunidade
      • Termos de Uso
      • Privacidade e opções de anúncios
      • Não venda nem compartilhe minhas informações
      • Ferramenta de consentimento de uso de cookies

      Trabalhe conosco

      • Anunciantes
      • Carreiras
      Baixe o aplicativo:

      • Busque por:
      • Empresas
      • Vagas
      • Localizações

      Copyright © 2008-2026. Glassdoor LLC. “Glassdoor”, “Worklife Pro”, “Bowls” e o logotipo do Glassdoor são marcas comerciais pertencentes à Glassdoor LLC.

      Empresas seguidas

      Fique por dentro de todas as oportunidades e dicas internas seguindo as empresas de seus sonhos.

      Buscas de vagas

      Comece a buscar vagas para receber atualizações e recomendações personalizadas.

      Entrevista para Sr Software Quality Engineer

      9 de mai. de 2024
      Candidato(a) sigiloso(a) à entrevista
      Hyderābād
      Nenhuma oferta
      Experiência negativa
      Entrevista difícil

      Candidatura

      Candidatei-me online. Fui entrevistado pela ServiceNow (Hyderābād) em mai. de 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

      Perguntas de entrevista [9]

      Pergunta 1

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

      Pergunta 2

      What is Transient keyword in Java?
      Responder à pergunta

      Pergunta 3

      What is Covariant Return Type in Java?
      Responder à pergunta

      Pergunta 4

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

      Pergunta 5

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

      Pergunta 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 à pergunta

      Pergunta 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 à pergunta

      Pergunta 8

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

      Pergunta 9

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