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

      Elastic

      Empresa engajada

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa Elastic | Vagas da empresa Elastic | Salários da empresa Elastic | Benefícios da empresa Elastic
      Entrevistas da empresa ElasticEntrevistas do cargo de Java Engineer da empresa ElasticEntrevista da empresa Elastic


      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.

      As melhores empresas na categoria “Remuneração e benefícios” perto de você

      avatar
      Capgemini
      3.7★Remuneração e benefícios
      avatar
      SAP
      3.9★Remuneração e benefícios
      avatar
      Bloomberg
      4.0★Remuneração e benefícios
      avatar
      Deel
      4.2★Remuneração e benefícios

      Buscas de vagas

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

      Entrevista para Java Engineer

      21 de jul. de 2017
      Candidato(a) sigiloso(a) à entrevista
      Remote, OR
      Nenhuma oferta
      Experiência negativa
      Entrevista difícil

      Candidatura

      Candidatei-me por indicação de um funcionário. O processo levou 4 semanas. Fui entrevistado pela Elastic (Remote, OR) em jul. de 2017

      Entrevista

      First interview --------------- 1-hour talk at 9:30 AM CEST, talent acquisition lady in Amsterdam. Nice informative talk without ceremony. Second interview ---------------- ~1-hour talk at 10:00 AM CEST, software engineer in France. The interview was carried out very nicely. After a short introduction, he asked me for ~15 minutes about Java concurrency, data structures and a sorting algorithm of my liking. The topic for the next ~15 minutes was to implement a method "public int[] merge(int [] a, int [] b)" in a Google Docs document. Afterwards there was some discussion about how I would unit test a method like this. The last 10 minutes were dedicated to questions I had in mind. He seemed to be very passionate about what he is doing. I enjoyed the interview. Third interview --------------- ~1-hour talk at 10:00 AM CEST, software engineer in Luxembourg. The interview was carried out very nicely. The interview began with questions about volatile. We discussed AtomicIntegers, lock stripping, contention and solutions for weakly consistent aggregations. In the next ~20 minutes I had to implement a solution to find the number of occurrences of a given digit in a sorted array. For example 5 in [ 1, 2, 5, 5, 5, 7] would return 3. The solution should run in logarithmic time. Finally, 15 minutes for questions. His beloved topic was replication and he told me about the ins and outs, different approaches etc., I was again absolutely astonished (in a positive way). Email from the acquisition lady (gist) -------------------------------------- The interview went really well (..). Spoke with the team (..). You have great chances on a role as a 'java generalist' and to specialise later on (..). Your next interview will be with xxx, specialising on the topic of distributed systems. My reply (gist) --------------- Very happy to hear, a bit concerned about distributed system topic as I am no expert on this topic (..), looking forward to speaking with xxx. Email from the acquisition lady (gist) -------------------------------------- Don't worry (..), we really appreciate that you know and openly communicate your strengths and weaknesses (..). Investing time in reading/learning about Elastic distributed topics and distributed systems in general is well spent though. Preparation for the interview ----------------------------- After that email I basically used every free minute to dig into the ElasticSearch Definitive Guide, read about distributed systems, Paxos, Raft, linearizability, single-leader replication, clock skew, vector locks, you name it. I just wanted to do everything I could in order to succeed as I was really motivated after the previous interviews. Fourth interview ---------------- ~45-min talk at 10:30 PM CEST, software engineer in California. I find it weird to schedule a technical interview at this time, given there are dozens of excellent engineers in closer timezones. I was bone-tired when the interview started. This engineer was absolutely not prepared. His first statement: "Uuhhm, let me open your CV first". He began to skim through my CV while I should tell him something about big system architecture. I did not have the impression that he really cared/listened. Afterwards I had to program "finding anagrams" and explain complexity in detail. No single distributed systems question by the end of the interview. Finally I had 5 minutes to ask some questions. Yet again he did not really care and just answered my questions in shallow-brained manner. I did not perform too well in this interview, mainly due to my condition. The questions were not that hard but I was simply too tired. Further proceedings ------------------- I was rather frustrated about the last interview and my performance. I planned to contact the talent acquisition lady again, explain to her why I did not perform well yesterday and ask for another interview. I implemented two more anagram solutions (prime number multiplication, int array) which are optimised in terms of space-complexity in order to show that I am really passionate about the role. After some more thoughts I decided to let it rest though, as the previous interview left a quite bad impression after all. Last email the acquisition lady ------------------------------- 3 days later, I received the last email from the talent acquisition lady, using one of these standard templates, explaining that there was some other candidate who just performed a little bit better. Given that she mentioned a concrete position in the previous email, I found this immediate drop out without any further explanation rather disrespectful/annoying. It would have been very helpful to learn in more detail, why another candidate was chosen at the end. Some companies even mention some books/blogs etc. in order to help the applicant to progress.

      Perguntas de entrevista [10]

      Pergunta 1

      When does a deadlock occur?
      3 respostas

      Pergunta 2

      Is i++ an atomic operation?
      1 resposta

      Pergunta 3

      Given a field private volatile int count = 0, two threads increment this field at the same time by count++ (once), which possible values can the field have afterwards?
      1 resposta

      Pergunta 4

      What is a ReadWriteLock?
      1 resposta

      Pergunta 5

      What does amortised 1 mean?
      1 resposta

      Pergunta 6

      In case a field has high contention (many threads accessing it in parallel), what could you do about it?
      1 resposta

      Pergunta 7

      What are the java concurrency primitives?
      1 resposta

      Pergunta 8

      How does a hash map internally work?
      1 resposta

      Pergunta 9

      How does volatile work?
      1 resposta

      Pergunta 10

      When would us use merge sort and what are its characteristics?
      Responder à pergunta
      43