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

      Amazon

      Empresa engajada

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa Amazon | Vagas da empresa Amazon | Salários da empresa Amazon | Benefícios da empresa Amazon
      Entrevistas da empresa AmazonEntrevistas do cargo de Software Development Engineer da empresa AmazonEntrevista da empresa Amazon


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

      17 de mar. de 2014
      Funcionário(a) sigiloso(a)
      Hyderābād
      Oferta aceita
      Experiência positiva
      Entrevista difícil

      Candidatura

      Candidatei-me por meio de uma faculdade ou universidade. O processo levou 1 dia. Fui entrevistado pela Amazon (Hyderābād) em jul. de 2013

      Entrevista

      I am interviewed as part of on campus recruitment process.I am a student of NIT waranagl. this review therefore is in the context of on campus placement. There was an online aptitude test followed by technical interviews. There were four technical interviews . In the first technical interview I was asked to find the pivot element in a sorted and rotated array. O(n) solution is obvious and I gave him O(log n) solution ( binary search )and I was asked to code it.After writing the code,I was asked to check my code if it covers all the edge cases or not. I have tested it and it seemed to work for all the edge cases but the interviwer pointed out a case where my code fails and then I have corrected it.He also asked me to write the code for searching an element in the sorted rotated array using binary search. the second question is given a binary search tree ,replace each node with the sum of numbers greater than the number in the node.I gave him O(n) solution and he was satisfied with it. In the second round , I was asked to design an application that sends a message to two friends if they come within two miles of each other. I gave him a solution indicating the data structures used to maintain the friend list and model of the solution . He pointed out the cons of the solution and I modified the data structure.Then there was long discussion where I gave him different solutions and He pointed out the cons of each solution and asked me to overcome it.Finally I arrived at a solution and the interviewer was satisfied with it. He also asked me a couple of puzzles and I answered them. I think the third round was the bar raiser I was asked two questions. The first question was : Given n jars each having a colour of some value.the value of the colour is from 0 to 100. when two jars (with colours say 'a' and 'b')are combined, the colour of the resulting solution is (a+b)%100.Also (a *b) amount of gas is released .Find a way to combine all the jars to form a single jar with minimum amount of gas release.(Only adjacent jars can be combined). The problem is similar to matrix chain multiplication- O(n^3)(Dynammic Programming)and after I gave him the solution I coded it. The second question was: A quadra tree is a tree where each node has atmost 4 child nodes.(similar to a binary tree which has atmost 2 child nodes). A monitor screen (black and white) is represented by a qudra tree in the following way: case 1:IF the entire screen is white then the value in the root node is white. similarly if the entire screen is black then the root stores black. case 2:If the screen is neigther completely black nor white then the screen is divided into 4 quadrents. and the node has 4 child nodes each representing one of the quadrants.( the screen is recursively divided into subscreens). Now given two screens represented by two quadra trees, return a quadra tree which represents the overlapping of the two screens.( assume when white and white overlaps results in white,black and white overlap results in black , black and black overlap results in black). I was asked to write the code for it. Round 4: Q1: Implement a stack which supports pop_min (return minimum element in the stack in O(1) ) along with push and pop operations. I gave him a couple of solutions and I was asked to code them.The he gave me a solution (maintain a linked list of minimums in the stack) and asked me to code it. Q2: Given a binary tree with fields- {pointer to left child,poiter to right child,next pointer}. Initially the next pointers are all NULL. Now fill all the next pointers in each node with pointer to the node which is immediately right to the node in the same level. The next pointer of rightmost node in a level shold be NULL. It can be done using level order traversal using a queue but the interviewer asked me to do it without using queue or any extra memmory and in O(n) time. Hint: The logic is to fill the next pointers in the (n+1) th level while trvelling in the n th level. I was asked to code it. PERSONAL INTERVIEW (HR) There was no HR interview although I was asked some questions like -Why do you want to join amazon, future plans , tell me about yourself,your habits and interests and about why I didn't do an intern ..etc SUMMARY OF EXPERIENCES The amazon interview process is very cool.The main thing here is to stay focused since the whole process is time consuming. The interviewers were very friendly and they are not bothered about the formalities.So the experience was great.

      Perguntas de entrevista [1]

      Pergunta 1

      this question is a bit difficult because of the limited time I was given to code it. Given a binary tree with fields- {pointer to left child,poiter to right child,next pointer}. Initially the next pointers are all NULL. Now fill all the next pointers in each node with pointer to the node which is immediately right to the node in the same level. The next pointer of rightmost node in a level shold be NULL. It can be done using level order traversal using a queue but the interviewer asked me to do it without using queue or any extra memmory and in O(n) time. Hint: The logic is to fill the next pointers in the (n+1) th level while trvelling in the n th level. I was asked to code it
      Responder à pergunta
      15

      Outras avaliações de entrevista de vagas de Software Development Engineer da empresa Amazon

      Entrevista para Software Development Engineer

      17 de jun. de 2026
      Candidato(a) sigiloso(a) à entrevista
      Oferta recusada
      Experiência positiva
      Entrevista fácil

      Candidatura

      Fiz uma entrevista na empresa Amazon.

      Entrevista

      Surprisingly easy — I expected tougher questions, but the coding round felt more like a warm-up. The main challenge was a DSA problem about counting islands in a 2D grid, which led to a discussion on DFS versus BFS and handling large grids. Funny enough, I had revisited that exact type of question while prepping on PracHub, which made me feel more confident. The interview wrapped up with a behavioral round, and I accepted an offer, but ultimately decided to decline it for another opportunity. Overall, it was a smooth experience.

      Perguntas de entrevista [1]

      Pergunta 1

      Number of Islands — given a 2D grid of '1's (land) and '0's (water), count the number of connected islands. Walk through DFS vs BFS, and discuss how to avoid revisiting cells (in-place mutation vs visited set) and what changes if the grid is huge and must stream from disk.
      Responder à pergunta

      Entrevista para Software Development Engineer

      3 de jun. de 2026
      Candidato(a) sigiloso(a) à entrevista
      Nenhuma oferta
      Experiência positiva
      Entrevista difícil

      Candidatura

      Fiz uma entrevista na empresa Amazon.

      Entrevista

      It started with an OA, and then after a few weeks, I got invited to four rounds of interviews: technical and behavioral at 3 of the 4, and behavioral only at one.

      Perguntas de entrevista [1]

      Pergunta 1

      Questions related to leadership principles
      Responder à pergunta

      Entrevista para Software Development Engineer

      23 de jun. de 2026
      Candidato(a) sigiloso(a) à entrevista
      Calgary, AB
      Nenhuma oferta
      Experiência positiva
      Entrevista com nível médio de dificuldade

      Candidatura

      Candidatei-me online. Fui entrevistado pela Amazon (Calgary, AB) em jun. de 2026

      Entrevista

      Online Assessment is the first step in the process. I didn’t have an HR phone screening and went straight to the OA after applying. It was sent to me about a week after I submitted my application.

      Perguntas de entrevista [1]

      Pergunta 1

      The first question is LeetCode style algorithms question, and the second question gives a full stack repo (choice of Java, NodeJS, or Django) and asks to solve a backend issue which is causing a bug in the frontend. Unit tests must pass to pass the second question. You can run both backend/frontend indivdually or together
      Responder à pergunta

      As melhores empresas na categoria “Remuneração e benefícios” perto de você

      avatar
      Google
      4.5★Remuneração e benefícios
      avatar
      Meta
      4.5★Remuneração e benefícios
      avatar
      Booking.com
      4.2★Remuneração e benefícios
      avatar
      Yandex
      3.9★Remuneração e benefícios