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

      Deloitte

      Empresa engajada

      Sobre
      Avaliações
      Remuneração e benefícios
      Vagas
      Entrevistas
      Entrevistas
      Buscas relacionadas: Avaliações da empresa Deloitte | Vagas da empresa Deloitte | Salários da empresa Deloitte | Benefícios da empresa Deloitte
      Entrevistas da empresa DeloitteEntrevistas do cargo de Junior Backend Developer da empresa DeloitteEntrevista da empresa Deloitte


      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
      Boston Consulting Group
      4.4★Remuneração e benefícios
      avatar
      TP
      4.3★Remuneração e benefícios
      SelfEmployed.com
      3.9★Remuneração e benefícios
      avatar
      Palladium
      3.6★Remuneração e benefícios

      Buscas de vagas

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

      Entrevista para Junior Backend Developer

      3 de dez. de 2024
      Candidato(a) sigiloso(a) à entrevista
      Israel, TX

      Outras avaliações de entrevista de vagas de Junior Backend Developer da empresa Deloitte

      Entrevista para Junior Backend Developer

      16 de mar. de 2026
      Funcionário(a) sigiloso(a)
      Atenas, , Ática
      Oferta aceita
      Nenhuma oferta
      Experiência neutra
      Entrevista com nível médio de dificuldade

      Candidatura

      Fiz uma entrevista na empresa Deloitte (Israel, TX).

      Entrevista

      HR phone call, then onsite test contains a few basic SQL queries and easy-medium leet code problems. To prep the best way make sure to rehearse your SQL queries writing

      Perguntas de entrevista [1]

      Pergunta 1

      Solve two sum leetcode problem
      Responder à pergunta
      Experiência positiva
      Entrevista difícil

      Candidatura

      Fui entrevistado pela Deloitte (Atenas, , Ática) em mar. de 2026

      Entrevista

      3 small excercises LeetCode Style: //DELOITTE INTERVIEW QUESTION 2 //Split substring so no letter occurs more than once in each substring //Return the min num of substrings into which the string has to be split /* 1.Must always be true:no letter occurs more than once in each substring 2.Event forcing a boundary: Appearance of a letter more than once in a substring (a.k.a. duplicate detected) 3.Data Structure that tracks the constraint : Set */ public static int minNumUniqueSubStr(String s ) { Set uniques = new HashSet<>(); int substringCount = 0; for (char c: s.toCharArray()) { if (uniques.contains(c)) { substringCount++; uniques.clear();// reset substring } uniques.add(c); } /* When a duplicate is detected, we start a new substring and clear the set. At that moment, the current character is the first character of the new substring. If we used else, we wouldn’t add the duplicate character to the new substring, which is wrong.*/ return substringCount; }

      Perguntas de entrevista [1]

      Pergunta 1

      //DELOITTE INTERVIEW QUESTION 2 //Split substring so no letter occurs more than once in each substring //Return the min num of substrings into which the string has to be split /* 1.Must always be true:no letter occurs more than once in each substring 2.Event forcing a boundary: Appearance of a letter more than once in a substring (a.k.a. duplicate detected) 3.Data Structure that tracks the constraint : Set */
      1 resposta

      Entrevista para Junior Backend Developer

      28 de mar. de 2023
      Funcionário(a) sigiloso(a)
      Berlim
      Oferta aceita
      Experiência positiva
      Entrevista fácil

      Candidatura

      Candidatei-me por indicação de um funcionário. O processo levou mais de 1 semana. Fui entrevistado pela Deloitte (Berlim) em fev. de 2023

      Entrevista

      The Interviews got place in Greece and remotely. I had to do 3 interviews and an 1 hour test with 3 different problems in Java( I selected the specific language) , the first one was a call Interview where the half call was in Greek and the other half in English. They asked me some general questions and some technical skills that I have and which language I prefer to the coding test. The coding test was 1 hour or 90 mins and it had 3 problems. It was perfect for someone who had enough knowledges in programming as a Junior. Not too difficult and also not too easy. In the second interview we discussed more in depth things about me, like my education, my skills, what are my preferences, my experiences etc. We did a video call and in the end we discussed which programming language I would like to get interview for which where Java, JavaScript or Python and which team I would like to join (based of course the programming language that I selected). After deciding the team, the last interview was the technical one. Because the team that I selected had to do with databases the last interview I had to design a database and explain every step I do and why, and also we discussed my codes in the coding test that I did after the 1st interview and how I could improve it even more.

      Perguntas de entrevista [8]

      Pergunta 1

      What are your skills?
      Responder à pergunta

      Pergunta 2

      How you see yourself in 2 years?
      Responder à pergunta

      Pergunta 3

      What's your experience?
      Responder à pergunta

      Pergunta 4

      Do you have any project that you are proud of?
      Responder à pergunta

      Pergunta 5

      What career path would you like to have in Deloitte?
      Responder à pergunta

      Pergunta 6

      What do you know about Deloitte?
      Responder à pergunta

      Pergunta 7

      How can you improve this code?
      Responder à pergunta

      Pergunta 8

      When you have a problem, how are you searching the solution?
      1 resposta
      1