Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      Deloitte

      Engaged employer

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: Deloitte reviews | Deloitte jobs | Deloitte salaries | Deloitte benefits | Deloitte conversations
      Deloitte interviewsDeloitte Junior Backend Developer interviewsDeloitte interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Centre
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy and Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalised job recommendations and updates by starting your searches.

      Top companies for "Compensation and Benefits" near you

      SelfEmployed.com
      3.9★Compensation and benefits

      Junior Backend Developer Interview

      16 Mar 2026
      Anonymous employee
      Athens, Athens, Attica

      Other Junior Backend Developer interview reviews for Deloitte

      Junior Backend Developer Interview

      3 Dec 2024
      Anonymous interview candidate
      Israel, TX
      No offer
      Accepted offer
      Positive experience
      Difficult interview

      Application

      I interviewed at Deloitte (Athens, Athens, Attica) in Mar 2026

      Interview

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

      Interview questions [1]

      Question 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 Answer
      Neutral experience
      Average interview

      Application

      I interviewed at Deloitte (Israel, TX)

      Interview

      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

      Interview questions [1]

      Question 1

      Solve two sum leetcode problem
      Answer question

      Junior Backend Developer Interview

      28 Mar 2023
      Anonymous employee
      Berlin
      Accepted offer
      Positive experience
      Easy interview

      Application

      I applied through an employee referral. The process took 1+ week. I interviewed at Deloitte (Berlin) in Feb 2023

      Interview

      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.

      Interview questions [8]

      Question 1

      What are your skills?
      Answer question

      Question 2

      How you see yourself in 2 years?
      Answer question

      Question 3

      What's your experience?
      Answer question

      Question 4

      Do you have any project that you are proud of?
      Answer question

      Question 5

      What career path would you like to have in Deloitte?
      Answer question

      Question 6

      What do you know about Deloitte?
      Answer question

      Question 7

      How can you improve this code?
      Answer question

      Question 8

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