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

      Undo

      Est-ce votre entreprise ?

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Undo | Offres d’emploi chez Undo | Salaires chez Undo | Avantages sociaux chez Undo
      Entretiens chez UndoEntretiens d’embauche pour Senior Software Engineer chez UndoEntretien chez Undo


      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 Senior Software Engineer

      26 sept. 2017
      Candidat à l'entretien anonyme
      Cambridge, East of England, England
      Aucune offre
      Expérience positive
      Entretien difficile

      Candidature

      J'ai postulé en personne. Le processus a pris 1 semaine. J'ai passé un entretien chez Undo (Cambridge, East of England, England) en sept. 2017

      Entretien

      You start out with a brief telephone interview to see if you are a potential match for the company, if both parties are happy to proceed you will be invited to a face to face interview. The face to face interview is long, but fair, I was greeted by the Cheif Operational Officer of the company, who is a knowledgeable guy; he knows his stuff. It's a fairly informal chat about the company, and about what processes they employ at the company. You get given a good idea about what they do, what they value and what they are looking for in a candidate. My face to face interview lasted around 5-6 hours. I didn't get offered a position as they are looking for someone with a much deeper understanding of how the Linux system APIs work than what I currently have (i.e. at the C Library and Kernel level) and someone with a more comprehensive knowledge of how C code is assembled.

      Questions d'entretien [5]

      Question 1

      Write a C function to reverse a string; discuss your approach, and why you chose the method you have gone for.
      1 réponse

      Question 2

      Write a C function to reverse the order of words in a string sentence; "some short phrase" becomes "phrase short some"
      1 réponse

      Question 3

      Write out the assembly for this C code snippet taking into account possibilities to optimize: int myfunc( void ); // Don't need to provide assembly for this; you can assume it is "callable" void abc( void ) { int a, b, c, d; a = 1 b = 2 c = myfunc() + b; return c; }
      1 réponse

      Question 4

      Discuss this code snippet; can you spot any bugs and if so, how to fix them (note, the code in the interrupt handler cannot be modified): // The following is known: // 1. You can be interrupted at any time. // 2. The interrupt will be repeatedly raised every 'x' micro seconds. // Please answer: // 1, Where is the bug in this code? // 2. How you would fix it? #include<stdio.h> #include<signal.h> #include<unistd.h> #include<assert.h> typedef struct { int a; int b; int c; int done; } foo; foo bar; void sig_handler(int signo) { if ( !bar.done ) { bar.c = bar.a + bar.b; bar.done = 1; } } int main(void) { bar.done = 0; bar.a = 0; bar.b = 0; signal(SIGINT, sig_handler); while(1) { for (int i=1; i < 20; i++) { for (int j=1; j < 20; j++) { bar.a = i; bar.b = j; while( !bar.done ); assert( bar.c == bar.a + bar.b ); bar.done = 0; printf("Loop done %d\n", bar.c); } } } }
      1 réponse

      Question 5

      Discuss what happens when you type the command "ls" in a terminal window and hit enter
      1 réponse
      1

      Autres retours d’entretien d’embauche pour un poste comme Senior Software Engineer chez Undo

      Entretien pour Senior Software Engineer

      6 juill. 2025
      Candidat à l'entretien anonyme
      Londres, Angleterre
      Aucune offre
      Expérience positive
      Entretien difficile

      Candidature

      J'ai postulé en ligne. Le processus a pris 3 semaines. J'ai passé un entretien chez Undo (Londres, Angleterre) en mai 2025

      Entretien

      "The Grill" is the name of the interview process. Which was a true software grilling against 3 senior engineers. Most questions were unique and involved deep understanding of Linux system programming

      Questions d'entretien [1]

      Question 1

      System Design and programming was the key topic of questions
      Répondre à cette question

      Entretien pour Senior Software Engineer

      14 nov. 2017
      Employé (anonyme)
      Cambridge, East of England, England
      Offre acceptée
      Expérience positive
      Entretien difficile

      Candidature

      J'ai postulé via un recruteur. Le processus a pris 2 semaines. J'ai passé un entretien chez Undo (Cambridge, East of England, England) en août 2016

      Entretien

      - Phone chat with a HR person - Phon e chat with a senior engineer (to understand more about the company and whether we were suitable for each other) - Interview at Undo's office with COO, CEO and two engineers.

      Questions d'entretien [1]

      Question 1

      Various questions on how I would implement what UndoDB does and then several questions from basic C knowledge to inner workings of Linux.
      Répondre à cette question