Passa al contenutoPassa al piè di pagina
  • Lavori
  • Aziende
  • Stipendi
  • Per le aziende

      Migliora la tua carriera

      Scopri le tue potenzialità di guadagno, trova lavori da sogno e condividi approfondimenti su lavoro e vita privata in forma anonima.

      employer cover photo
      employer logo
      employer logo

      Deloitte

      Azienda coinvolta

      Circa
      Recensioni
      Stipendi e benefit
      Lavori
      Colloqui
      Colloqui
      Ricerche correlate: Recensioni su Deloitte | Offerte di lavoro di Deloitte | Stipendi di Deloitte | Benefit di Deloitte
      Colloqui di DeloitteColloqui per Junior Backend Developer presso DeloitteColloquio di Deloitte


      Glassdoor

      • Chi siamo
      • Contattaci

      Aziende

      • Account Business gratuito
      • Spazio per le aziende
      • Blog per le aziende

      Informazioni

      • Aiuto
      • Linee guida
      • Condizioni d'uso
      • Privacy e scelte pubblicitarie
      • Non vendere né condividere le mie informazioni
      • Strumento per l'accettazione dei cookie

      Lavora con noi

      • Inserzionisti
      • Carriere
      Scarica l'app

      • Cerca:
      • Aziende
      • Lavori
      • Località

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" e il relativo logo sono marchi registrati di Glassdoor LLC.

      Aziende seguite

      Non lasciarti sfuggire opportunità e informazioni privilegiate seguendo le aziende dove vorresti lavorare.

      Ricerche di lavoro

      Ricevi suggerimenti e aggiornamenti personalizzati avviando le tue ricerche.

      Le migliori aziende per "stipendio e benefit" vicino a te

      SelfEmployed.com
      3.9★Stipendio e benefit
      avatar
      TP
      4.3★Stipendio e benefit
      avatar
      BTC Business Technology Consulting
      3.7★Stipendio e benefit
      avatar
      Corporate Business Solutions
      4.3★Stipendio e benefit

      Colloquio per Junior Backend Developer

      16 mar 2026
      Dipendente anonimo
      Atene, , Attica

      Altre recensioni di colloqui per Junior Backend Developer presso Deloitte

      Colloquio per Junior Backend Developer

      3 dic 2024
      Candidato anonimo a colloquio
      Israel, TX
      Nessuna offerta
      Offerta accettata
      Esperienza positiva
      Colloquio difficile

      Candidatura

      Ho sostenuto un colloquio presso Deloitte (Atene, , Attica) nel mese di mar 2026

      Colloquio

      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; }

      Domande di colloquio [1]

      Domanda 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 risposta
      Esperienza neutra
      Colloquio nella media

      Candidatura

      Ho sostenuto un colloquio presso Deloitte (Israel, TX)

      Colloquio

      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

      Domande di colloquio [1]

      Domanda 1

      Solve two sum leetcode problem
      Rispondi alla domanda

      Colloquio per Junior Backend Developer

      28 mar 2023
      Dipendente anonimo
      Berlino
      Offerta accettata
      Esperienza positiva
      Colloquio facile

      Candidatura

      Ho presentato la mia candidatura tramite segnalazione di un dipendente. La procedura ha richiesto più di una settimana. Ho sostenuto un colloquio presso Deloitte (Berlino) nel mese di feb 2023

      Colloquio

      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.

      Domande di colloquio [8]

      Domanda 1

      What are your skills?
      Rispondi alla domanda

      Domanda 2

      How you see yourself in 2 years?
      Rispondi alla domanda

      Domanda 3

      What's your experience?
      Rispondi alla domanda

      Domanda 4

      Do you have any project that you are proud of?
      Rispondi alla domanda

      Domanda 5

      What career path would you like to have in Deloitte?
      Rispondi alla domanda

      Domanda 6

      What do you know about Deloitte?
      Rispondi alla domanda

      Domanda 7

      How can you improve this code?
      Rispondi alla domanda

      Domanda 8

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