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

      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

      Amazon Web Services

      Parte de Amazon

      ¿Esta es tu empresa?

      Información
      Opiniones
      Sueldos y beneficios
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Opiniones sobre Amazon Web Services | Ofertas de empleos en Amazon Web Services | Sueldos en Amazon Web Services | Beneficios en Amazon Web Services
      Entrevistas de Amazon Web ServicesEntrevistas para el puesto de Software Developer Engineer en Amazon Web ServicesEntrevista de Amazon Web Services


      Glassdoor

      • Acerca de
      • Premios
      • Blog
      • Contacto

      Empresas

      • Cuenta gratuita de empresa
      • Centro de empresas

      Información

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

      Trabaja con nosotros

      • Anunciantes
      • Empleo
      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 de primera mano.

      Búsquedas de empleo

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

      Las mejores empresas en cuanto a «Remuneración y beneficios» cerca de ti

      avatar
      Google
      4.5★Remuneración y beneficios
      avatar
      Amazon
      3.7★Remuneración y beneficios
      avatar
      Meta
      4.6★Remuneración y beneficios
      avatar
      Fiverr Inc.
      3.5★Remuneración y beneficios

      Entrevista de Software Developer Engineer

      28 jul 2025
      Candidato de entrevista anónimo
      Sin oferta
      Experiencia neutra
      Entrevista difícil

      Solicitud

      Solicité el puesto a través de la recomendación de un empleado. El proceso duró más de 1 semana. Acudí a una entrevista en Amazon Web Services en may 2025

      Entrevista

      Home test, a coding assignment of two lit code questions. Time limited to 70 minutes. No proctor, I had 6 days to submit the assignment. The level of both questions was Hard.

      Preguntas de entrevista [2]

      Pregunta 1

      Printer Suspension Optimization The engineering team at an Amazon fulfillment center is optimizing n high-performance printers, where each printer i can print pages[i] number of pages. Each printer can be in exactly one of three states: operational, idle, or suspended. Printers initially start in an idle state and can be activated one by one. However, if too many printers are active at once, some will get suspended due to their threshold limit defined by the suspension rule below. Suspension Rule: If there are at least x operational printers, all such printers i with threshold[i] ≤ x will get suspended and stop printing. 🧠 Task: The goal is to determine the maximum number of pages that can be printed before printers get suspended. Note: Activating a printer with threshold[i] = x allows it to print pages[i] pages. However, once at least x printers are active, their pages get printed first, and then all the printers with threshold ≤ x will get suspended immediately. Choosing the activation order carefully is therefore crucial to maximize the total printed pages before suspensions occur. Example ini Copy Edit n = 4 pages = [2, 6, 10, 13] threshold = [2, 1, 1, 1]
      Responder pregunta

      Pregunta 2

      Minimum Requests to Kill All Servers The developers at Amazon want to perform a reliability drill on some servers. There are n servers where the iᵗʰ server can serve request[i] number of requests and has an initial health of health[i] units. Each second, the developers send the maximum possible number of requests that can be served by all the available servers. With the request, the developers can also send a virus to one of the servers that can decrease the health of a particular server by k units. The developers can choose the server where the virus should be sent. A server goes down when its health is less than or equal to 0. After all the servers are down, the developers must send one more request to conclude the failure of the application. 🧠 Task: Find the minimum total number of requests that the developers must use to bring all the servers down. Example ini Copy Edit n = 2 request = [3, 4] health = [4, 6] k = 3 The minimum number of requests required is 21. No. of Request Total Requests Virus Server Server's New Health 7 3 + 4 = 7 1 6 - 3 = 3 7 3 + 4 = 7 1 3 - 3 = 0 → server 1 dies 3 3 + 0 = 3 0 4 - 3 = 1 3 3 + 0 = 3 0 1 - 3 = -2 → server 0 dies 1 – – – conclude the failure Thus total of 7 + 7 + 3 + 3 + 1 = 21 requests are required.
      Responder pregunta