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

      Applied Materials

      Empresa engajada

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa Applied Materials | Vagas da empresa Applied Materials | Salários da empresa Applied Materials | Benefícios da empresa Applied Materials
      Entrevistas da empresa Applied MaterialsEntrevistas do cargo de Senior Software Engineer da empresa Applied MaterialsEntrevista da empresa Applied Materials


      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 Senior Software Engineer

      29 de mar. de 2021
      Candidato(a) sigiloso(a) à entrevista
      Bengaluru
      Nenhuma oferta
      Experiência neutra
      Entrevista difícil

      Candidatura

      Candidatei-me por meio de uma agência de recrutamento. O processo levou 1 semana. Fui entrevistado pela Applied Materials (Bengaluru) em mar. de 2021

      Entrevista

      I got interview scheduler for Applied materials through a job portal. Initial round was an online assessment test from cocubes that consists of multiple choice questions ranging from quantitative aptitude, reasoning, Operating systems, data structures and algorithms. Second round was an online programming test(proctored test) from glider.ai site. There are 4 programming questions that needs to be solved in 75 min.

      Perguntas de entrevista [1]

      Pergunta 1

      Cocubes test questions on datastructures and algorithms: ---------------------------------------------------------------------------- 1) Average search time for hashing with linear probing will be less if the load factor a) is far less than one b) equals one c) is far greater than one d) None of the above 2) In a complete k-ary tree every internal node has exactly k children or no child. The number of leaves in such a tree with N internal nodes is a) Nk b) (N-1)k+1 c) N(k-1)+1 d) N(k-1) 3) The number of leaf nodes in a complete binary tree of depth d is a) 2^d b) 2^(d-1) + 1 c) 2^(d+1) + 1 d) 2^d + 1 4) Which of the following statements is/are TRUE for an undirected graph? P: Number of odd degree vertices is even Q: Sum of degress of all vertices is even Options : a) P only b) Q only c) Both P and Q d) Neither P nor Q 5) The following numbers are inserted into an empty binary search tree in the given order : 10, 1, 3, 5, 15, 12, 16. What is the height of the binary search tree? (the height of a tree is the maximum distance of a leaf node from the root) ? Options : a) 2 b)3 c)4 d)6 6) The complexity of multiplying two matrices of order m*n and n*p is of the order a) m*n*p b) m*p c)m*n d)n*p 7) Let P be a Quicksort Program to sort numbers in ascending order using the first element as pivot. Let t1 and t2 be the number of comparisions made by P for the inputs {1,2,3,4,5} and {4,1,5,3,2} respectively. Which one of the following holds true? a) t1=5 b) t1 < t2 c) t1>t2 d)t1=t2 8) A circularly linked list is used to represent a Queue. A single variable p is used to access the Queue. To which node should p point such that both the operations enQueue an deQueue can be performed in constant time ? Front -----> Node1 ------> Node2 ------------> Rear ^ | |_________________________________________________| Options : a) rear node b) front node c)not possible with a single pointer d)node next to front 9) Restriction while using the binary search is Options : a) List should be similar in number b) List should be larger in number c) List should be in sorted order d) None of these 10) Which of the following sorting methods would the most suitable for sorting list which is almost sorted Option : a) Bubble sort b)Insertion sort c) Selection sort d) Quick sort Programming ​test (4 programming problems to be solved in 75 minutes) from glider.ai ---------------------------------------------------------------------------------------------------------------- 1) Find the sum of upper pyramid of a matrix of size (M x N) with M rows and N columns. The matrix is stored in a 1D array The below is representational purpose of matrix(in 2D) and the elements that contribute to sum. These elements are stored in a 1D array 1 2 3 4 5 elements considered for sum in this row (1,2,3,4,5) 6 7 8 9 10 elements considered for sum in this row (7,8,9) 11 12 13 14 15 elements considered for sum in this row (13) 16 17 18 19 20 elements not considered for sum in this row 2)Find if the given two strings is a permutation of the other 3) Find students with maximum average score of 3 subjects 4) Suppress negative integers in an array without disturbing the sequence of order of occurance. input : 5, -4, 3, -2, 6, -11, 12, -8, 9 output: 5, 3, 6, 12, 9, -4, -2, -11, -8 (negative numbers moved to end)
      Responder à pergunta
      23

      Outras avaliações de entrevista de vagas de Senior Software Engineer da empresa Applied Materials

      Entrevista para Senior Software Engineer

      24 de mai. de 2026
      Candidato(a) sigiloso(a) à entrevista
      Rehovot
      Nenhuma oferta
      Experiência neutra
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me pessoalmente. Fui entrevistado pela Applied Materials (Rehovot) em abr. de 2026

      Entrevista

      First stage: 90 minutes coding interview, basic questions about experience, 3 medium range C++ tasks: 1. About non-blocking interprocess communication 2. Don't remember 3. Big dataset normalization Second stage: 90 minutes software design interview about multithreading data processing

      Perguntas de entrevista [1]

      Pergunta 1

      You have huge vector of unsorted char values. Find the value which is bigger than 90% of values in vector. Can you do it in O(n)?
      Responder à pergunta

      Entrevista para Senior Software Developer

      26 de mai. de 2022
      Candidato(a) sigiloso(a) à entrevista
      Nova Deli
      Nenhuma oferta
      Experiência negativa
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me por meio de uma agência de recrutamento. Fui entrevistado pela Applied Materials (Nova Deli) em mai. de 2022

      Entrevista

      It was good.first round from someone from India very helpful guy while I was solving ds array questions. Second round was at late night with foreigner and he was also good but it's like they mainly focus a lot on multhithreading so be prepare for that.i was not selected in second round.

      Perguntas de entrevista [1]

      Pergunta 1

      Total 2 rounds. First round array ds questions like remove duplicates from array, find peak element in rotated sorted array, binary search , second highest max no and then muthithreading questions like lock and how to remove deadlock. They focus a lot on multhithreading concepts. Second round - struct class diff (silly question) Deadlock theory and then write code to show deadlock , then two big codes where you have to guess the output and it's also on multhithreading. What is lock. List and linked list diff How Dictionary is implemented internally. In second round I was not selected.but surely this one will help someone so be prepare for multhithreading questions and very easy ds questions.
      Responder à pergunta
      8

      Entrevista para Senior Software Engineer

      12 de mai. de 2022
      Candidato(a) sigiloso(a) à entrevista
      Nenhuma oferta
      Experiência positiva

      Candidatura

      Fiz uma entrevista na empresa Applied Materials.

      Entrevista

      A brief overview of the organisation followed by my introduction and work. Then we went with the online platform for coding glider. The questions asked are below: Internal implementation of Hash Map Upside Down pyramid sum for a 2-D array which is made input using 1-D array and of N*M matrix.

      Perguntas de entrevista [1]

      Pergunta 1

      internal implementation of Hash Map
      Responder à pergunta