Aller au contenuAller au pied de page
  • Emplois
  • Entreprises
  • Salaires
  • Pour les employeurs

      Boostez votre carrière

      Découvrez votre salaire potentiel, décrochez des emplois de rêve et partagez vos témoignages de manière anonyme.

      employer cover photo
      employer logo
      employer logo

      Disprz

      Est-ce votre entreprise ?

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Disprz | Offres d’emploi chez Disprz | Salaires chez Disprz | Avantages sociaux chez Disprz
      Entretiens chez DisprzEntretiens d’embauche pour Associate Software Engineer chez DisprzEntretien chez Disprz


      Glassdoor

      • À propos
      • Récompenses
      • Blog
      • Nous contacter
      • Guides

      Employeurs

      • Compte employeur gratuit
      • Centre employeur
      • Blog pour les employeurs

      Informations

      • Aide
      • Règles de la communauté
      • Conditions d'utilisation
      • Confidentialité et choix publicitaires
      • Ne pas vendre ni partager mes informations
      • Outil de consentement aux cookies

      Travailler avec nous

      • Annonceurs
      • Carrières
      Télécharger l'application

      • Parcourir par :
      • Entreprises
      • Emplois
      • Lieux

      Copyright © 2008-2026. Glassdoor LLC. « Glassdoor », son logo, « Worklife Pro » et « Bowls » sont des marques déposées de Glassdoor LLC.

      Entreprises suivies

      Tenez-vous au courant des dernières opportunités et profitez de conseils d’initiés en suivant les entreprises de vos rêves.

      Recherche d’emplois

      Obtenez des recommandations et des mises à jour personnalisées en démarrant vos recherches.

      Entretien pour Associate Software Engineer

      23 mai 2023
      Candidat à l'entretien anonyme
      Chennai
      Aucune offre
      Expérience négative
      Entretien moyen

      Candidature

      J'ai postulé en ligne. Le processus a pris 4 jours. J'ai passé un entretien chez Disprz (Chennai) en mai 2023

      Entretien

      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.

      Questions d'entretien [1]

      Question 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.
      Répondre à cette question
      1

      Autres retours d’entretien d’embauche pour un poste comme Associate Software Engineer chez Disprz

      Entretien pour Associate Software Engineer

      12 févr. 2025
      Candidat à l'entretien anonyme
      Aucune offre
      Expérience positive
      Entretien moyen

      Candidature

      J'ai postulé en ligne. Le processus a pris 4 semaines. J'ai passé un entretien chez Disprz en déc. 2024

      Entretien

      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.

      Questions d'entretien [1]

      Question 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)
      Répondre à cette question
      1

      Entretien pour Associate Software Engineer

      21 juin 2023
      Employé (anonyme)
      Chennai
      Offre acceptée
      Expérience positive
      Entretien facile

      Candidature

      J'ai postulé via une autre source. J'ai passé un entretien chez Disprz (Chennai) en juin 2023

      Entretien

      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.

      Questions d'entretien [1]

      Question 1

      1. Coding round : given an array, asked to print sum of the first four largest elements of the array.
      Répondre à cette question

      Meilleures entreprises pour « Rémunération et avantages » près de chez vous

      avatar
      SAP
      3.9★Rémunération et avantages
      avatar
      Capgemini
      3.7★Rémunération et avantages
      avatar
      Salesforce
      4.4★Rémunération et avantages
      avatar
      Thomson Reuters
      3.8★Rémunération et avantages