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

      HiBob

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur HiBob | Offres d’emploi chez HiBob | Salaires chez HiBob | Avantages sociaux chez HiBob
      Entretiens chez HiBobEntretiens d’embauche pour Backend Engineer chez HiBobEntretien chez HiBob


      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 Backend Engineer

      13 juin 2023
      Candidat à l'entretien anonyme
      Tel Aviv-Yafo
      Aucune offre
      Expérience positive
      Entretien moyen

      Candidature

      J'ai postulé en ligne. Le processus a pris 1 semaine. J'ai passé un entretien chez HiBob (Tel Aviv-Yafo) en juin 2023

      Entretien

      I recently went through the interview process with Hibob, and I had a positive experience overall. The company impressed me with its strong technological stack and a friendly, collaborative team. Throughout the process, I found the interviewers to be knowledgeable and engaging. They asked relevant questions and provided me with an opportunity to showcase my skills and experience. The technical interview was particularly enjoyable, as it allowed me to demonstrate my abilities in a supportive environment. One area where I believe Hibob could further enhance the experience is by providing more detailed feedback to candidates who are not selected. Constructive feedback would be valuable for candidates to understand areas for improvement and help them grow professionally. Despite not moving forward in the process, I appreciated the company's openness to future opportunities. This positive attitude and the overall interview experience have left me with a favorable impression of Hibob.

      Questions d'entretien [1]

      Question 1

      About me and my experience. One task for coding, one for design.
      Répondre à cette question
      avatar
      Réponse de HiBob
      2y
      Thank you so much for your review and for your feedback, it is super valuable for us. We will pass this on to our talent acquisition team as we constantly want to better the experience for any candidate that applies to HiBob

      Autres retours d’entretien d’embauche pour un poste comme Backend Engineer chez HiBob

      Entretien pour Backend Engineer

      11 mars 2026
      Employé (anonyme)
      Offre acceptée
      Expérience positive
      Entretien moyen

      Candidature

      J'ai postulé en ligne. J'ai passé un entretien chez HiBob en janv. 2026

      Entretien

      The interview process was respectful and well-structured. The team was kind and communicative, ensuring the process remained transparent and fast-paced. It moved quickly through a reasonable number of stages that effectively tested my technical knowledge. I found the assignment to be relevant to the position, fair in scope, and it didn't require an unreasonable time commitment.

      Questions d'entretien [1]

      Question 1

      The technical assignment involved developing a full-stack application centered around data processing and AI-driven responses.
      Répondre à cette question
      avatar
      Réponse de HiBob
      2mo
      Thank you for sharing your experience. We’re pleased to hear the process felt respectful, transparent, and well structured, and that the technical assessment was relevant and fair in scope. It’s great to know the team’s communication and the pace of the process helped create a positive experience. Thank you again for your feedback, and welcome to HiBob.

      Entretien pour Backend Engineer

      5 nov. 2025
      Employé (anonyme)
      Offre acceptée
      Expérience positive
      Entretien moyen

      Candidature

      J'ai postulé via un recruteur. Le processus a pris 3 semaines. J'ai passé un entretien chez HiBob en sept. 2025

      Entretien

      The process was a bit long but very clear and well-organized. It started with a technical interview with two developers, followed by a design interview with team leads, then a conversation with the Group Lead, and finally with HR and the VP of R&D. Everyone was kind, professional, and informative, and the response came back really quickly.

      Questions d'entretien [1]

      Question 1

      The first interview appeared here in a few variations. In the design interview, I was asked to present the design of a project I had worked on.
      Répondre à cette question
      avatar
      Réponse de HiBob
      6mo
      Thank you for sharing your interview experience with us. We’re glad to hear that the process felt clear, organized, and supported by kind and professional team members. While we understand that multiple stages can feel lengthy, we aim to ensure candidates have a full picture of the role, the team, and the technical expectations. We’re happy the communication felt smooth and timely, and we appreciate the thoughtful preparation you put into each stage. Congratulations on your offer—welcome to HiBob!

      Entretien pour Backend Engineer

      21 juil. 2025
      Candidat à l'entretien anonyme
      Tel Aviv-Yafo
      Offre refusée
      Expérience neutre
      Entretien difficile

      Candidature

      Le processus a pris 1 semaine. J'ai passé un entretien chez HiBob (Tel Aviv-Yafo) en juil. 2025

      Entretien

      During the Zoom interview with 2 technical persons from HiBob company, they sent me a link (via the Zoom chat) to an online IDE on codesignal.com, and gave me the assignment to implement. You can choose whatever language you want, I chose Java.

      Questions d'entretien [1]

      Question 1

      So, in their predefined java project, there are 2 classes: MeetingRoom.java public class MeetingRoom { int capacity; String roomName; } and MeetingRoomFinder.java import java.time.LocalDate; import java.util.List; import java.util.Optional; public class MeetingRoomFinder { public List meetingRooms; public MeetingRoomFinder(List meetingRooms) { this.meetingRooms = meetingRooms; } public Optional bookMeetingRoom(LocalDate date, int numOfPeople) { return null; } } and they asked me to implement the method bookMeetingRoom to return an available room for that date, with the smallest capacity that sufficient for that number of people.
      Répondre à cette question
      avatar
      Réponse de HiBob
      10mo
      Thank you for sharing your feedback. We appreciate your participation in the interview process, and we’re sorry to hear that your experience was not as positive as we’d hoped. We aim to ensure our technical interviews are both challenging and fair, and your input will help us continue to improve the process. We wish you all the best in your future endeavors and hope to cross paths again!