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

      Disprz

      ¿Esta es tu empresa?

      Información
      Evaluaciones
      Pago y prestaciones
      Empleos
      Entrevistas
      Entrevistas
      Búsquedas relacionadas: Evaluaciones de Disprz | Empleos en Disprz | Sueldos en Disprz | Prestaciones en Disprz
      Entrevistas en DisprzEntrevistas para el cargo de Associate Software Engineer en DisprzEntrevista en Disprz


      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. 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 desde adentro.

      Búsquedas de empleo

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

      Entrevista para Associate Software Engineer

      23 may 2023
      Candidato de entrevista anónimo
      Chennai
      Sin ofertas
      Experiencia negativa
      Entrevista promedio

      Solicitud

      Me postulé en línea. El proceso tomó 4 días. Acudí a una entrevista en Disprz (Chennai) en may 2023

      Entrevista

      there were 3 rounds of interview. Firstly we connect on google meet and provide a JavaScript question in Coder bites compiler time will 1 hour. question coding: Have the function LargestFour (arz) take the array of integers stored in art, and find the four largest elements and return their sum. For example: if arr is [4, 5, -2, 3, 1, 2, 6, 6] then the four largest elements in this array are 6, 6, 4, and 5 and the total sum of these numbers is 21, so your program should return 21. If there are less than four numbers in the array your program should return the sum of all the numbers in the array. Examples Input: [1, 1, 1, -5] Output: -2 Input: [0, 0, 2, 3, 7, 1] Output: 13 This is the question, I coalified in the first round of interviews, after that 3 days again 1 interview conduct in google meet. andHave the function LargestFour (arz) take the array of integers stored in art, and find the four largest elements and return their sum. For example: if arr is [4, 5, -2, 3, 1, 2, 6, 6] then the four largest elements in this array are 6, 6, 4, and 5 and the total sum of these numbers is 21, so your program should return 21. If there are less than four numbers in the array your program should return the sum of all the numbers in the array. start the interview firstly asked me introduce your self and asked me which language I work and asked to react question 1. what is react, 2. react hook, 3. react routing 4. state props 5. callback function 6. usestate 7. why use jsx that all overall only 10 minutes of the interview and the interview say that call hr to send mail and feedback on the interview.

      Preguntas de entrevista [1]

      Pregunta 1

      question coding: Have the function LargestFour (arz) take the array of integers stored in art, and find the four largest elements and return their sum. For example: if arr is [4, 5, -2, 3, 1, 2, 6, 6] then the four largest elements in this array are 6, 6, 4, and 5 and the total sum of these numbers is 21, so your program should return 21. If there are less than four numbers in the array your program should return the sum of all the numbers in the array. Examples Input: [1, 1, 1, -5] Output: -2 Input: [0, 0, 2, 3, 7, 1] Output: 13 This is the question, I coalified in the first round of interviews, after that 3 days again 1 interview conduct in google meet. andHave the function LargestFour (arz) take the array of integers stored in art, and find the four largest elements and return their sum. For example: if arr is [4, 5, -2, 3, 1, 2, 6, 6] then the four largest elements in this array are 6, 6, 4, and 5 and the total sum of these numbers is 21, so your program should return 21. If there are less than four numbers in the array your program should return the sum of all the numbers in the array. start the interview firstly asked me introduce your self and asked me which language I work and asked to react question 1. what is react, 2. react hook, 3. react routing 4. state props 5. callback function 6. usestate 7. why use jsx that all overall only 10 minutes of the interview and the interview say that call hr to send mail and feedback on the interview.
      Responder pregunta
      1

      Otras evaluaciones sobre las entrevistas para el cargo de Associate Software Engineer en Disprz

      Entrevista para Associate Software Engineer

      12 feb 2025
      Candidato de entrevista anónimo
      Sin ofertas
      Experiencia positiva
      Entrevista promedio

      Solicitud

      Me postulé en línea. El proceso tomó 4 semanas. Acudí a una entrevista en Disprz en dic 2024

      Entrevista

      The interview process is structured in three stages. The first is a 1.5-hour online assessment focused on Data Structures and Algorithms (DSA), for which LeetCode practice is highly recommended. The second stage is a technical interview that evaluates problem-solving and analytical skills. The final stage is an HR interview covering aspects like culture fit and compensation expectations.

      Preguntas de entrevista [1]

      Pregunta 1

      First Round the input will be ab array of 64 integers which should be converted to an 8x8 matrix represent the position of a chess board with 1st row being the opponent end and last row is your end .the value in the array 0- empty 1-opponet pawns 2-your knight 3-your other pieces your knight can move only in l shape to 3 positions ahead or behind and only to an empty square or on opponents pawns position with value 0 or 1.But opponents pawns can capture your knight if you place your knight in the immediate cross position of the pawns towards your side .based on your knights current position, you should return the list of possible position as row:col coordinate to which you can move your knight without getting captured by any of the opponent pawns ordered row and then column if no knight cannot be moved to any position return "no way" example input: [0,0,0,0,0,0,0,0, 1,0,1,0,1,0,1,0, 0,1,0,1,0,1,0,1, 0,0,0,3,0,0,0,0, 0,0,0,0,3,3,3,0, 3,2,3,0,0,0,0,0, 3,3,3,0,3,0,3,0, 0,0,0,0,0,0,0,0] output (4:3)(6:3)(7:0)(7:2)
      Responder pregunta
      1

      Entrevista para Associate Software Engineer

      21 jun 2023
      Empleado anónimo
      Chennai
      Oferta aceptada
      Experiencia positiva
      Entrevista fácil

      Solicitud

      Me postulé a través de otra fuente. Acudí a una entrevista en Disprz (Chennai) en jun 2023

      Entrevista

      Interview process includes 3 rounds. Questions asked in the interview are logical. Mainly they checked the candidates thinking ability. Should be strong in basics of the tech stack. Overall experience was good.

      Preguntas de entrevista [1]

      Pregunta 1

      1. Coding round : given an array, asked to print sum of the first four largest elements of the array.
      Responder pregunta

      Las mejores empresas en cuanto a "Remuneración y prestaciones" cerca de ti

      avatar
      AttackIQ
      4.4★Remuneración y prestaciones
      avatar
      Riba&Carod Associats
      4.4★Remuneración y prestaciones