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

      Booking.com

      Fait partie de Booking Holdings

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Booking.com | Offres d’emploi chez Booking.com | Salaires chez Booking.com | Avantages sociaux chez Booking.com
      Entretiens chez Booking.comEntretiens d’embauche pour Software Developer - (Willing to Learn Perl) chez Booking.comEntretien chez Booking.com


      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 Software Developer - (Willing to Learn Perl)

      25 août 2014
      Candidat à l'entretien anonyme
      Aucune offre
      Expérience négative

      Autres retours d’entretien d’embauche pour un poste comme Software Developer - (Willing to Learn Perl) chez Booking.com

      Entretien pour Software Developer (Willing to Learn Perl)

      10 juin 2015
      Employé (anonyme)
      Amsterdam
      Entretien moyen

      Candidature

      J'ai postulé via un recruteur. Le processus a pris 3 semaines. J'ai passé un entretien chez Booking.com en juin 2014

      Entretien

      Everything has already been said on the other reviews, I'm writing this post to let you know my phone technical questions (we used TitanPad). The questions were harder than what I saw here on Glassdoor, but they did teel me that, considering my background, they were considering me for a Senior position, so maybe this explains why

      Questions d'entretien [3]

      Question 1

      Implement a function nondecreasing_subsequences() that, given a sequence of numbers such as: [ 3,6,61,6,7,9,1,7,7,2,7,7,2,388,3,72,7 ] ... will identify and return each contiguous sub-sequence of non-decreasing numbers. E.g. this example input should return this array-of-arrays (e.g. or list-of-lists) [ [3,6,61],[6,7,9],[1,7,7],[2,7,7],[2,388],[3,72],[7] ] (Each array includes a sequence of numbers that do not get smaller. The original order is unchanged.) For a visual example of a non-decreasing, see: http://en.wikipedia.org/wiki/File:Monotonicity_example1.png
      3 réponse(s)

      Question 2

      Implement a function all_anagram_groups() that, given many input strings, will identify and group words that are anagrams of each other. An anagram is word that is just a re-arrangement of the characters of another word, like "reap" and "pear" and "a per" (whitespace is ignored). But "pear" and "rep" are not, since "rep" does not have an "a". Also, "the" and "thee" are not anagrams, because "the" only has one "e". Given this example input: [ "pear","dirty room","amleth","reap","tinsel","hamlet","dormitory","listen","silent" ] The output should be an array-of-arrays (or list-of-lists) [ ["pear","reap"], ["dirty room","dormitory"], ["amleth","hamlet"], ["tinsel","listen","silent"] ]
      3 réponse(s)

      Question 3

      Write a function get_hops_from(page1, page2) that will determine the number of hyperlinks that you would need to click on to get from some page1 on the web to some other page2 on the web. For example, if each page below links to the pages that are indented below it, e.g. page 1 links to pages 2 and 5, and page 2 links to pages 3 and 4, and page 5 links to pages 3 and 7, then the get_hops_from(page1, page7) should return 2 (2 hops), since you have to hop once from page 1 to 5 and once more from page 5 to page 7. page1 : distance == 0 page2 : distance == 1 page3 : distance == 2 page4 : distance == 2 page5 : distance == 2 page3 : distance == 2 page7 : distance == 2 Assume that an API is available to: * get_links(a_page) will return an array/list of all pages that a_page links to
      5 réponse(s)
      10
      Offre acceptée
      Expérience positive
      Entretien difficile

      Candidature

      J'ai postulé en ligne. Le processus a pris 2 mois. J'ai passé un entretien chez Booking.com (Amsterdam) en févr. 2015

      Entretien

      Never had such before. Instead of just giving a task (as an exam) and wait you cracking it they told about a problem and we were working on it together. The whole process included: -coding task on time online. -mobile short talk to HR -online technical interview with 2 team leads -onsite interview. 5 hours, 3 rounds.

      Questions d'entretien [1]

      Question 1

      The chess game and algorithm for a horse getting shortest path to move from one point to another.
      1 réponse
      2

      Entretien pour Perl Developer (Willing to Learn Perl)

      12 janv. 2015
      Candidat à l'entretien anonyme
      Aucune offre
      Expérience positive
      Entretien moyen

      Candidature

      J'ai postulé via la recommandation d'un employé. Le processus a pris 4 semaines. J'ai passé un entretien chez Booking.com en janv. 2015

      Entretien

      After I applied this position, got an Email and need to finish online code test on HackerRank. The test contains 6 coding tests with 3 difficult, 2 medium and 1 easy problem( Just choose the one you can complete in 1 hour) . Then I got call from HR and confirmed the time of technical review. Then, the technical phone review with two developer. The question is there is an endless stream, you can get characters from this stream one by one. How to identify a word from this stream? How to handle the case if the first character of this word appeared several times in this word? For example, grep "interview" from "intervinterview". How to find thousands of word from this string?

      Questions d'entretien [1]

      Question 1

      As above
      Répondre à cette question
      3

      Entretien pour Software Developer Willing to Learn Perl

      3 janv. 2016
      Candidat à l'entretien anonyme
      Amsterdam
      Aucune offre
      Expérience positive
      Entretien difficile

      Candidature

      J'ai postulé en ligne. Le processus a pris 2 semaines. J'ai passé un entretien chez Booking.com (Amsterdam) en déc. 2014

      Entretien

      * Recruitment Interview with the Recruiter : This was general round over telephone, recruiter asked me some general questions about my total experience, why do I want to leave my current company and why do I want to join booking.com * Technical phone interview with 2 members from the IT Department : In this round first I got a test fr 1 hour and that test was prepared by Hackerrank.com, after that I got a call and phone interview starts, during phone interview they again gave me a problem to write algorithm for it and asked complexity of it. * Face to face interview at office, in my case Amsterdam

      Questions d'entretien [1]

      Question 1

      If there is a small hotel in part of Amsterdam why should we add them?
      1 réponse