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

      Shakudo

      ¿Esta es tu empresa?

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de Shakudo | Empleos en Shakudo | Sueldos en Shakudo | Prestaciones en Shakudo
      Entrevistas en ShakudoEntrevistas para el cargo de Senior Software Engineer en ShakudoEntrevista en Shakudo


      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. Indeed, Inc. "Glassdoor", "Worklife Pro", "Bowls" y sus logotipos son marcas comerciales registradas de Indeed, Inc.

      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 Engineer

      3 dic 2024
      Candidato de entrevista anónimo
      Toronto, ON

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

      Entrevista para Senior Software Engineer

      23 jun 2025
      Candidato de entrevista anónimo
      Sin ofertas
      Experiencia negativa
      Entrevista promedio
      Oferta rechazada
      Experiencia negativa
      Entrevista difícil

      Solicitud

      Me postulé en línea. El proceso tomó 3 semanas. Acudí a una entrevista en Shakudo (Toronto, ON) en oct 2024

      Entrevista

      Couple of online coding tests on hackerrank followed by 3 in-person interviews: 1 long technical interview focusing on system design and 1 leetcode style question and 1 system design interview, followed by 2 shorter culture fit style interviews.

      Preguntas de entrevista [1]

      Pregunta 1

      Hackerrank ~ LC 4 Easy/Medium questions. Technical - Talk about a system you have designed and tradeoffs Q: We are given an array with non-negative elements. At index i, we can move to index (i+A[i])%n. If we start at index 0, find the first index which is visited twice.
      1 respuesta
      1

      Solicitud

      Me postulé en línea. El proceso tomó más de 1 semana. Acudí a una entrevista en Shakudo en jun 2025

      Entrevista

      They took five rounds of interviews, 1 HR discussion. 2. Technical Interview with 3 DSA questions. (only HR was sitting, and did not have any idea. No technical interviewer) 3. Machine coding round (Same, No technical recruiter) 4. Machine coding round (Same, No technical recruiter) In all the technical rounds, He asked me to share the code files via email. Got them reviewed by their engineering team and then updated me. 5. Head of engineering round- talked about my experience, the projects and technologies i have worked on in deep. She told me that after this round there will be one meeting with CEO, and it will be after 2-3 days and after that we will proceed with your contract. And then they GHOSTED, they wasted my two weeks of time, took alot of interviews and then no reply to any email, everything was going right. So do not believe these guys, I do not know what they are doing, maybe just timepass. I even sent multiple emails saying that give me an updated, even if i am rejected, but they do not have the courage to respond.

      Preguntas de entrevista [4]

      Pregunta 1

      // You are given an array of integers representing the maximum number of steps you can take from each position. // Write a function to determine the minimum number of leaps required to reach the last index of the array, // starting from the first index. You can leap forward by a number of steps equal to the value at the current position. // **Example:** // Input: [2, 3, 1, 1, 4] // Output: 2 // **Constraints:** // * The length of the array does not exceed 10^4. // * Each element in the array represents a non-negative integer.
      Responder pregunta

      Pregunta 2

      // **Problem:** // You are given a 2D grid representing a map of land and water. // Each cell in the grid contains an integer representing the elevation of the land. // The Pacific Ocean touches the left and top edges of the grid, and the Atlantic Ocean touches the right and bottom edges. // Water can only flow from a cell to another if and only if the elevation of the latter is equal to or lower than // the former. Determine the coordinates where water can flow from both the Pacific and Atlantic oceans. // Write a function to find all coordinates where water can flow to both the Pacific and Atlantic oceans. // **Examples:** // Consider the following 5x5 grid representing the elevation map: // ``` // Pacific // | // 1 2 2 3 5 // 3 2 3 4 4 // 2 4 5 3 1 // 6 7 1 4 5 // 5 1 1 2 4 __Atlantic // ``` // Input: [[1,2,2,3,5],[3,2,3,4,4],[2,4,5,3,1],[6,7,1,4,5],[5,1,1,2,4]] // Output: [[0,4],[1,3],[1,4],[2,2],[3,0],[3,1],[4,0]] // {(4, 4), (3, 4), (3, 1), (1, 4), (4, 2), (2, 3), (3, 3), (1, 3)} // {(1, 2), (2, 1), (3, 1), (1, 1), (1, 3)} // **Constraints:** // The grid dimensions m×n are such that 1≤m, n≤200, 1≤m, n≤200. // Each element in the grid represents an integer elevation value. // The elevation values are non-negative integers.
      Responder pregunta

      Pregunta 3

      // **Problem:** // You are given an array representing the heights of cement blocks at various positions along a straight line. // Each block has a width of 1 unit. Calculate the units of // liquid cement needed to fill => evenned out, not add height to the existing solid blocks. // You do not need to fill in diagonals or partial blocks (i.e. only full units of cement are needed) // **Examples:** // ``` // Input: [0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1] // Output: 6 // Visualization: // # // # ~ ~ ~ # # ~ # // # ~ # # ~ # # # # # # // 0 1 0 2 1 0 1 3 2 1 2 1 // 0 1 1 2 2 2 2 3 // Where "#" represents cement blocks and "~" represents the cement filled.
      Responder pregunta

      Pregunta 4

      Write code to implement OIDC authentication and use those details to get running pods in their Kubernetes environment.
      Responder pregunta
      3

      Entrevista para Senior Software Engineer

      15 mar 2025
      Candidato de entrevista anónimo
      Sin ofertas
      Experiencia negativa
      Entrevista promedio

      Solicitud

      Acudí a una entrevista en Shakudo

      Entrevista

      Onsite - I felt someone from the development team should have been there during the interview to evaluate skills rather than some non-technical person answering questions. When solving problems, you never get to the most efficient solution the first time. You first get the correct solution and then proceed to optimizing it. One of the engineer should ask questions during/after the interview on how to make it efficient rather than evaluating answers like a high school professor. I was able to notice the lack of team spirit.

      Preguntas de entrevista [1]

      Pregunta 1

      Common leetcode questions varying from medium to hard
      Responder pregunta
      2