Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by HashedIn by Deloitte Team. If you also belong to the team, you can get access from here

HashedIn by Deloitte Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

HashedIn by Deloitte Interview Questions, Process, and Tips

Updated 11 Mar 2025

Top HashedIn by Deloitte Interview Questions and Answers

View all 126 questions

HashedIn by Deloitte Interview Experiences

Popular Designations

114 interviews found

I applied via Company Website and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked three DSA problem. The first one was two sum problem if array is not sorted, then the interviewer asked what if the array is sorted. Second question was maximum sum subarray and third was to fi...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be really good with DSA and core computer subjects. They can ask questions related to these from anywhere.

Top HashedIn by Deloitte Software Engineer Interview Questions and Answers

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)

I applied via Campus Placement and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Arrays, MergeSort, Hashing, and Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn DSA thoroughly and know your projects. They will ask in deep

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

I applied via Referral and was interviewed before Dec 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Algorithms and DBMS interview asking for finding count, min, and max. Finding whether a string is palindrome or not.

Round 3 - Technical 

(2 Questions)

  • Q1. Asked to design a scalable system that uses NoSQL DB and caching.
  • Q2. What is sharding and how it can be implemented.
  • Ans. 

    Sharding is a database partitioning technique to improve performance and scalability.

    • It involves dividing a large database into smaller, more manageable parts called shards.

    • Each shard contains a subset of the data and can be stored on a separate server.

    • Sharding can be implemented using different strategies such as range-based, hash-based, or round-robin.

    • It requires careful planning and coordination to ensure data consi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest in the interview, say what you know and don't know. And in technical round, speak to your best of knowledge.

Top HashedIn by Deloitte Software Engineer Interview Questions and Answers

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)

I applied via Campus Placement and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be good with your DSA basics and problem solving.

SDE (Software Development Engineer) Interview Questions asked at other Companies

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

HashedIn by Deloitte interview questions for popular designations

 Software Developer

 (17)

 Software Engineer

 (14)

 Devops Engineer

 (7)

 Software Engineer2

 (7)

 Software Engineer II

 (4)

 Front end Developer

 (3)

 Intern

 (3)

 Data Engineer

 (3)

Interview Questions & Answers

user image Anonymous

posted on 19 Oct 2021

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. All oops concepts and 15 java programming questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared the fundamentals

Get interview-ready with Top HashedIn by Deloitte Interview Questions

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Count occurence of element in an array
  • Ans. 

    Count occurrence of element in an array of strings

    • Use a loop to iterate through the array

    • Use a dictionary to store the count of each element

    • Increment the count for each element encountered

  • Answered by AI
  • Q2. Right rotational array
  • Q3. System design of snake and ladder
  • Ans. 

    System design for the game of Snake and Ladder

    • Create a board with 100 cells and mark the positions of snakes and ladders

    • Implement a player class with a current position on the board

    • Roll a dice to move the player and check for snakes and ladders

    • Keep track of player scores and winner at the end of the game

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice easy leet code questions to crack first round

Skills evaluated in this interview

Software Engineer II Interview Questions asked at other Companies

Q1. There are fifteen horses and a racing track that can run five horses at a time. You have to figure out the top 3 horses out of those and you don't have any timer machine to measure. How will you find the top 3 horses?
View answer (2)

Jobs at HashedIn by Deloitte

View all

I applied via Referral and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Basic array based questions and some puzzles

Round 2 - Technical 

(1 Question)

  • Q1. Object oriented concepts and college projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare algorithms and data structures well

Junior Engineer Interview Questions asked at other Companies

Q1. What is the main role of Junior engineer in Electrical maintenance and How to provide the company facilities ?
View answer (25)

I applied via Referral and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Write code to find max length subarray matching the given sum
  • Ans. 

    Code to find max length subarray matching the given sum

    • Use a sliding window approach to iterate through the array

    • Keep track of the current sum and the maximum length subarray

    • If the current sum exceeds the given sum, move the window's left pointer

    • If the current sum matches the given sum, update the maximum length subarray

    • Return the maximum length subarray

  • Answered by AI
  • Q2. Write CLI snake and ladders game code
  • Ans. 

    CLI snake and ladders game code

    • Create a board with 100 cells using a 10x10 array

    • Define snakes and ladders positions as an array of tuples

    • Use a loop to alternate player turns and move them based on dice roll

    • Check for snakes and ladders and update player position accordingly

    • Print the board after each turn and declare winner when a player reaches cell 100

  • Answered by AI
  • Q3. Write an SQL query to given an output from given tables
  • Ans. 

    SQL query to retrieve output from given tables

    • Identify the tables and their relationships

    • Determine the columns to be selected

    • Use appropriate join and filter conditions

    • Group and aggregate data if required

  • Answered by AI
  • Q4. Basic oops concepts
  • Q5. Method overloading vs Method overriding
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a subclass method with the same name and parameters as a superclass method.

    • Method overloading is used to provide different ways of calling the same method with different parameters.

    • Method overriding is used to provide a specific implementation of a method in a subclass that is already defined in a supe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Know basic concepts of oops, data structures, algorithms.
Have an understanding of sdlc, agile methodologies.

Skills evaluated in this interview

Top HashedIn by Deloitte Software Developer Interview Questions and Answers

Q1. Chocolate Pickup Problem Ninja has a 'GRID' of size 'R' x 'C'. Each cell of the grid contains some chocolates. Ninja has two friends, Alice and Bob, and he wants to collect as many chocolates as possible with their help. Alice starts at the... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

I applied via Approached by Company and was interviewed before Oct 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Sql and python questions
Round 3 - Technical 

(1 Question)

  • Q1. Spark and system design questions
Round 4 - Fitment round 

(1 Question)

  • Q1. Mnagerial round. Regarding previous company experience.

Interview Preparation Tips

Topics to prepare for HashedIn by Deloitte Senior Data Engineer interview:
  • SQL
  • Spark
Interview preparation tips for other job seekers - Work on sql and internal of spark. Prepare system design for big data systems or real time streaming applications.

Senior Data Engineer Interview Questions asked at other Companies

Q1. Write a query to get the customer with the highest total order value for each year, month. [Note: Order table is different and Customer table is different. Order_ID and Customer_ID are the PK of the table with Oid from Customer table being ... read more
View answer (2)

Interview Questionnaire 

2 Questions

  • Q1. Css flexbox & grid
  • Q2. Variable declaration in js
  • Ans. 

    Variable declaration in JavaScript

    • Use 'var', 'let', or 'const' to declare variables

    • Variables declared with 'var' have function scope

    • Variables declared with 'let' or 'const' have block scope

    • Variables declared with 'const' cannot be reassigned

    • Use descriptive variable names

  • Answered by AI

Skills evaluated in this interview

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

HashedIn by Deloitte Interview FAQs

How many rounds are there in HashedIn by Deloitte interview?
HashedIn by Deloitte interview process usually has 2-3 rounds. The most common rounds in the HashedIn by Deloitte interview process are Technical, Coding Test and HR.
How to prepare for HashedIn by Deloitte interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at HashedIn by Deloitte. The most common topics and skills that interviewers at HashedIn by Deloitte expect are Python, Hibernate, Spring Boot, SQL and Java.
What are the top questions asked in HashedIn by Deloitte interview?

Some of the top questions asked at the HashedIn by Deloitte interview -

  1. Optimize the code for job scheduling written in the first ro...read more
  2. Optimize the code for generating prime numb...read more
  3. What is CRFS? The experience around working with ...read more
How long is the HashedIn by Deloitte interview process?

The duration of HashedIn by Deloitte interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

HashedIn by Deloitte Interview Process

based on 85 interviews

Interview experience

4.4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
ITC Infotech Interview Questions
3.8
 • 334 Interviews
Cyient Interview Questions
3.6
 • 283 Interviews
View all

HashedIn by Deloitte Reviews and Ratings

based on 414 reviews

4.2/5

Rating in categories

4.3

Skill development

4.1

Work-life balance

4.0

Salary

4.4

Job security

4.3

Company culture

3.8

Promotions

4.0

Work satisfaction

Explore 414 Reviews and Ratings
DevOps Engineer-II

Bangalore / Bengaluru

2-6 Yrs

Not Disclosed

DevOps Engineer

Hyderabad / Secunderabad,

Pune

+2

2-6 Yrs

Not Disclosed

Explore more jobs
Software Engineer
424 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
378 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
199 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer II
174 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
164 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare HashedIn by Deloitte with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview