Ir para o conteúdoIr para a pasta
  • Vagas
  • Empresas
  • Salários
  • Para empresas

      Avance em sua carreira

      Descubra qual pode ser seu salário, conquiste a vaga dos seus sonhos e compartilhe insights de qualidade de vida com sigilo.

      employer cover photo
      employer logo
      employer logo

      Booking.com

      Parte da empresa Booking Holdings

      Empresa engajada

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa Booking.com | Vagas da empresa Booking.com | Salários da empresa Booking.com | Benefícios da empresa Booking.com
      Entrevistas da empresa Booking.comEntrevistas do cargo de Team Lead Software Development da empresa Booking.comEntrevista da empresa Booking.com


      Glassdoor

      • Sobre
      • Prêmios
      • Blog
      • Fale conosco

      Empresas

      • Conta gratuita de empresa
      • Área da empresa
      • Blog para empresas

      Informações

      • Ajuda
      • Regras da Comunidade
      • Termos de Uso
      • Privacidade e opções de anúncios
      • Não venda nem compartilhe minhas informações
      • Ferramenta de consentimento de uso de cookies

      Trabalhe conosco

      • Anunciantes
      • Carreiras
      Baixe o aplicativo:

      • Busque por:
      • Empresas
      • Vagas
      • Localizações

      Copyright © 2008-2026. Glassdoor LLC. “Glassdoor”, “Worklife Pro”, “Bowls” e o logotipo do Glassdoor são marcas comerciais pertencentes à Glassdoor LLC.

      Empresas seguidas

      Fique por dentro de todas as oportunidades e dicas internas seguindo as empresas de seus sonhos.

      Buscas de vagas

      Comece a buscar vagas para receber atualizações e recomendações personalizadas.

      Entrevista para Team Lead Software Development

      2 de mai. de 2016
      Candidato(a) sigiloso(a) à entrevista
      Nenhuma oferta
      Experiência negativa
      Entrevista fácil

      Candidatura

      Candidatei-me online. O processo levou 2 semanas. Fui entrevistado pela Booking.com em mai. de 2016

      Entrevista

      I applied for the position on their web site. Few days later they sent me a link to an online test at Hackerrank. About 10 days later there was a phone interview with a technical recruiter. A few more days later they said I'm not a match.

      Perguntas de entrevista [1]

      Pergunta 1

      The Hackerrank assessment is ridiculously simple. There are 4 problems to solve, but you are super limited in time (just 15 minutes per problem). The most difficult was reading data from the standard input.
      Responder à pergunta

      Outras avaliações de entrevista de vagas de Team Lead Software Development da empresa Booking.com

      Entrevista para Software Development Team Leader

      17 de out. de 2017
      Candidato(a) sigiloso(a) à entrevista
      Nenhuma oferta
      Experiência negativa
      Entrevista difícil

      Candidatura

      Candidatei-me online. Fui entrevistado pela Booking.com em ago. de 2017

      Entrevista

      Applied on booking.com website, received email with explanation of the process and link to hackerrank.com website for a test (link valid for a week) with 4 questions. I managed to document 2 of them

      Perguntas de entrevista [3]

      Pergunta 1

      Identify whether four sides (given by four integers) can form a square, a rectangle or neither. Input: Each line of the input describes a single polygon, and contains four space-separated integers, which represent the length of the sides of the polygon. The input lines will follow the 'A B C D' order as in the following representation: A ------| | D B | c ------| Output: A single line which contains 3 space-separated integers, representing the number of squares, number of rectangles and number of other polygons with 4 sides. Note that squares shouldn't be counted as rectangles. Invalid polygons should also be counted as 'other polygons'. Constraints The four integers representing the sides will be such that: -2000 <= X <= 2000 (Where X represents the integer)
      1 resposta

      Pergunta 2

      Given a set of hotels and its guests reviews, sort the hotels based on a list of words specified by a user. The criteria to sort the hotels should be how many times the words specified by the user is mentioned in the hotel reviews. Input: The first line contains a space-separated set of words which we want to find mentions in the hotel reviews. The second line contains one integer M, which is the number of reviews. This is followed by M+M lines, which alternates an hotel ID and a review belonging to that hotel. Output: A list of hotel IDs sorted, in descending order, by how many mentions they have of the words specified in the input. Notes: * The words to be find will always be single words like 'breakfast' or 'noise*. Never double words like 'swimming pool'. * Hotel ID is a 4-byte integer * Words match should be case-insensitive * Dots and commas should be ignored. * If a word appears in a review twice, it should count twice. * If two hotels have the same number of mentions, they should be sorted in the output based on their ID, smallest ID first. * In case one or more test cases time out, consider revisiting the runtime complexity of your algorithms
      Responder à pergunta

      Pergunta 3

      Given a list of numbers as input, e.g. : 25626 25757 24367 24267 16 100 2 7277 Output a delta encoding for the sequence. In a delta encoding, the first element is reproduced as-is. Each subsequent element is represented as the numeric difference from the element before it. E.g. for the sequence above, the delta encoding would be: 25626 131 -1390 -100 -24251 84 -98 7275 However, if a difference value does not fit in a single signed byte, i.e. -127 <= x <= 127, then, instead of the difference, we would like to use an escape token, printing it. This will denote that the value following the escape token is a full four-byte difference value, rather than a one-byte difference value. For this exercise, well declare -128 as the escape token. Following the same example above, the final output would be: 25626 -128 131 -128 -1390 -100 -128 -24251 84 -98 -128 7275
      Responder à pergunta