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

Filter interviews by

HashedIn by Deloitte Interview Questions and Answers

Updated 14 Jun 2025
Popular Designations

134 Interview questions

A Software Developer was asked
Q. 

Anagram Pairs Verification Problem

Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the ...

Ans. 

Check if two strings are anagrams of each other by comparing their sorted characters.

  • Sort the characters of both strings and compare them.

  • Use a dictionary to count the frequency of characters in each string and compare the dictionaries.

  • Ensure both strings have the same length before proceeding with the comparison.

  • Example: For input 'str1 = "spar", str2 = "rasp"', the output should be True.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Convert Binary Tree to Mirror Tree Problem Statement

Given a binary tree, convert this binary tree into its mirror tree. A binary tree is a tree in which each parent node has at most two children. The mirr...

Ans. 

Convert a binary tree into its mirror tree by interchanging left and right children of non-leaf nodes.

  • Traverse the binary tree in a recursive manner.

  • Swap the left and right children of each non-leaf node.

  • Continue this process until all nodes are visited.

  • Example: Input binary tree: 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1, Output mirror tree: 1 3 2 6 5 4 -1 -1 -1 -1 -1 7 -1 -1 -1

View all Software Developer interview questions
A Software Developer was asked
Q. 

Longest Mountain Subarray Problem Statement

Given an array of integers denoting the heights of the mountains, find the length of the longest subarray that forms a mountain shape.

A mountain subarray is de...

Ans. 

Find the length of the longest mountain subarray in an array of integers.

  • Identify peaks in the array where the elements transition from ascending to descending order.

  • Calculate the length of the mountain subarray starting from each peak.

  • Track the length of the longest mountain subarray found so far.

  • Consider edge cases like when there are no mountains in the array.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Min Jumps Problem Statement

In Ninja town, represented as an N * M grid, people travel by jumping over buildings in the grid's cells. Santa is starting at cell (0, 0) and must deliver gifts to cell (N-1, M...

Ans. 

Santa needs to find the quickest path to deliver gifts in Ninja town by jumping over buildings with least travel time.

  • Santa starts at (0, 0) and needs to deliver gifts to (N-1, M-1) on Christmas Eve.

  • Santa can jump to (x+1, y+1), (x+1, y), or (x, y+1) from any cell (x, y) within grid boundaries.

  • Travel time between two buildings equals the absolute difference in their heights.

  • Find the quickest path with least travel...

View all Software Developer interview questions

What people are saying about HashedIn by Deloitte

View All
a senior product master
2w
J.P. Morgan VP - Product role: Salary insights?
Looking at a VP – Product role at J.P. Morgan (CCB, Hyderabad) with 13 years of experience. Currently at 52.5 LPA (45 fixed + 7.5 variable) + 3L signing bonus. Need insights on: • Typical fixed vs variable salary split • Bonus structure and consistency • ESOPs/RSUs at this level? • Realistic total comp? Any recent or firsthand info is appreciated!
Got a question about HashedIn by Deloitte?
Ask anonymously on communities.
A Software Developer was asked
Q. 

Convert a Number to Words

Given an integer number num, your task is to convert 'num' into its corresponding word representation.

Input:

The first line of input contains an integer ‘T’ denoting the number of...
Ans. 

Convert a given integer number into its corresponding word representation.

  • Implement a function that converts the given number into words by breaking it down into its individual digits and mapping them to their word representation.

  • Handle special cases like numbers less than 20, multiples of 10, and numbers in the hundreds and thousands place.

  • Ensure that there is a space between every two consecutive words and all c...

View all Software Developer interview questions
A Software Developer was asked
Q. How would you design a social media platform with features such as friend requests and posts?
Ans. 

Designing a social media platform with friend requests and posts.

  • Implement user profiles with friend request functionality.

  • Allow users to create and share posts on their profiles.

  • Include news feed to display posts from friends.

  • Implement notifications for friend requests and post interactions.

  • Include privacy settings for posts and friend requests.

  • Consider implementing features like comments, likes, and shares for p...

View all Software Developer interview questions
A Software Developer was asked
Q. 

Cycle Detection in a Singly Linked List

Determine if a given singly linked list of integers forms a cycle or not.

A cycle in a linked list occurs when a node's next points back to a previous node in the l...

Ans. 

Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

  • Use Floyd's Tortoise and Hare algorithm to detect a cycle in the linked list.

  • Maintain two pointers, slow and fast, where slow moves one step at a time and fast moves two steps at a time.

  • If there is a cycle, the fast pointer will eventually meet the slow pointer.

  • If the fast pointer reaches the end of the list (n...

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. 

Merge K Sorted Arrays Problem Statement

Given 'K' different arrays that are individually sorted in ascending order, merge all these arrays into a single array that is also sorted in ascending order.

Input

...
Ans. 

Merge K sorted arrays into a single sorted array.

  • Create a min-heap to store the first element of each array along with the array index.

  • Pop the smallest element from the heap and add it to the result array.

  • If the array from which the element was popped has more elements, add the next element to the heap.

  • Repeat until all elements are merged into a single sorted array.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Triplets with Given Sum Problem

Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

Explanation:

A tr...

Ans. 

The task is to find all distinct triplets in an array that sum up to a specified number.

  • Iterate through all possible triplets using three nested loops.

  • Check if the sum of the triplet equals the target sum.

  • Print the triplet if found, else print -1.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Four Sum Problem Statement

You are provided with an array/list 'ARR' consisting of 'N' integers and an integer 'TARGET'. The task is to determine if there exist four distinct numbers in 'ARR' such that the...

Ans. 

The task is to determine if there exist four distinct numbers in an array that sum up to a given target value.

  • Iterate through all possible combinations of four distinct numbers in the array.

  • Use a nested loop to check all combinations efficiently.

  • Keep track of the sum of each combination and compare it with the target value.

  • Return 'Yes' if a valid combination is found, otherwise return 'No'.

View all Software Developer interview questions

HashedIn by Deloitte Interview Experiences

128 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

Leetcode medium level questions

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa question was asked . You need to implement optimized solution
  • Q2. Questions from resume and some on database
Round 3 - Technical 

(2 Questions)

  • Q1. Medium level dsa question. Again needed optimized approach .
  • Q2. System design questions
Round 4 - HR 

(1 Question)

  • Q1. Fitment round . Questions on previous work experience and hr questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There were 3 Dsa based questions out of which two were medium and one was easy.

Round 2 - Technical 

(2 Questions)

  • Q1. System design of parking
  • Ans. 

    Design a system for parking management

    • Use sensors to detect available parking spots

    • Implement a payment system for parking fees

    • Include a mobile app for users to find and reserve parking spots

    • Utilize cameras for security monitoring

    • Integrate with navigation apps for real-time parking availability updates

  • Answered by AI
  • Q2. Dbms acid questions
Round 3 - Technical 

(2 Questions)

  • Q1. Dsa question oninked list and array medium level.
  • Q2. Project done in past
  • Ans. 

    Developed a web application for tracking inventory and sales data

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express

    • Utilized MongoDB for database management

  • Answered by AI
Round 4 - Behavioral 

(2 Questions)

  • Q1. Situation based questions
  • Q2. How did you overcome failures
  • Ans. 

    I overcome failures by learning from them, staying positive, and seeking feedback.

    • Learn from mistakes and identify areas for improvement

    • Stay positive and maintain a growth mindset

    • Seek feedback from colleagues or mentors to gain different perspectives

    • Set new goals and move forward with a renewed focus

  • Answered by AI

Interview Questions & Answers

user image Anonymous

posted on 12 Dec 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Dec 2022.

Round 1 - Aptitude Test 

Based on logical thinking and reasoning questions

Round 2 - Technical 

(2 Questions)

  • Q1. Find maximum number from given array
  • Ans. 

    Find the maximum number from a given array of strings.

    • Convert the array of strings to an array of integers.

    • Use a loop to iterate through the array and keep track of the maximum number found.

    • Return the maximum number at the end.

  • Answered by AI
  • Q2. Reverse the sentence
Round 3 - HR 

(1 Question)

  • Q1. Why we hire you
  • Ans. 

    I have a strong background in quality engineering, proven track record of improving processes, and a passion for continuous improvement.

    • I have a Bachelor's degree in Engineering with a focus on quality management.

    • I have successfully implemented quality improvement initiatives in my previous roles, resulting in cost savings and increased efficiency.

    • I am skilled in using quality tools such as Six Sigma, Lean, and statist...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
4-6 weeks
Result
-

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Product RCA and past exp
  • Q2. Waste of time guy focus on some better companies

Interview Preparation Tips

Interview preparation tips for other job seekers - So I had 3 rounds and I cleared all the rounds(confirmed by HR after completing each round). HR told me that she will get back to be and we had already mutually agreed on the salary before starting the interview. After clearing all the rounds HR told me that she is working on the offer letter. And once I didn't hear anything from her for quite a long time the I called the HR. She then said I can give you 80% of what currently I was drawing. So before interview we were agreed to 50% hike on base. Also I have noticed some fraud going in the interview process HR rescheduling the HR multiple times once I asked her why you are rescheduling so she said, that interviewer is not good guy and I'll reschedule with some better interviewer.
I anyone from the audit/HR leadership is reading this please discuss the case with your HR Navya.
Also this happened when I had applied from employee referral, imagine what will happen to the profiles of direct applies on company portal or Linkedin.

SDE Intern Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They had three coding questions for 1:30 hr and Two technical rounds and at last they had fitment round

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse the array
  • Ans. 

    Reverse the array of strings

    • Create a new array and iterate through the original array in reverse order, adding each element to the new array

    • Alternatively, you can use the reverse() method on the array itself

  • Answered by AI
  • Q2. Detect a loop in the linked list
  • Ans. 

    Use Floyd's Tortoise and Hare algorithm to detect a loop in a linked list.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps.

    • If they meet at any point, there is a loop in the linked list.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Questions where based on sysytem design
  • Q2. Low level system design questions , design a tic tac toe game

Skills evaluated in this interview

Team Manager Interview Questions & Answers

user image Anonymous

posted on 16 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Company culture fit
  • Q2. People vs Process
  • Ans. 

    Balancing people and processes is essential for effective team management.

    • Effective team management requires a balance between focusing on people and processes.

    • Investing in developing strong relationships with team members can lead to better collaboration and productivity.

    • Establishing clear processes and guidelines can help streamline workflows and ensure consistency in performance.

    • Regularly evaluating and adjusting bo...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. MS proficiency related questions
  • Q2. Data analysis related questions
Round 3 - Case Study 

Senior Management case study scenario, conflict management

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well, know about their culture

Sdet Interview Questions & Answers

user image Anonymous

posted on 1 Dec 2024

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 coding question 1 easy 2 med, 1 hard have to do in 90 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about benefits of linked list, tree, graph
  • Q2. Questions on SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be very confident and prepare well!
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. You are given n bulbs and a function that can identify a faulty bulb at any location among the n bulbs. If a bulb is found to be faulty, all subsequent bulbs will also be faulty. How can you determine the ...
  • Q2. To rotate an array by k places to the left
  • Q3. To find the second highest salary.Sql question

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview experience was ok it totally depended on the person who was taking the interview. There was first a coding round where you were given 3 question to solve in 90 minutes the difficulty was moderate. I Then there were 2 technical interview round and a hr round.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jul 2024.

Round 1 - Coding Test 

1.5 hours
1) maximum subarray sum - LeetCode;
2) keto eating banana - LeetCode;
3) the third one was difficult - dynamic programming question.

Round 2 - Technical 

(4 Questions)

  • Q1. Maximum subarray sum Length of Binary tree Merge Two sorted Linked List
  • Ans. 

    The maximum subarray sum problem involves finding the contiguous subarray within a one-dimensional array of numbers which has the largest sum.

    • Use Kadane's algorithm to find the maximum subarray sum efficiently.

    • Consider all possible subarrays and calculate their sums to find the maximum.

    • Dynamic programming can be used to solve this problem efficiently.

    • Example: For array [-2, 1, -3, 4, -1, 2, 1, -5, 4], the maximum subar...

  • Answered by AI
  • Q2. Quesions from projects, OOPs, Web Development.
  • Q3. Pagination, Hoisting etc.
  • Q4. DML, DDL etc
Round 3 - Technical 

(2 Questions)

  • Q1. System Design Relational Schema Table Designing SQL
  • Q2. Project discussion + Html js code + basic ques on ML etc
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Arrays and dp questions

Round 2 - Technical 

(2 Questions)

  • Q1. Maximum depth of binary tree
  • Ans. 

    The maximum depth of a binary tree is the longest path from the root node to a leaf node.

    • The maximum depth of a binary tree can be calculated recursively by finding the maximum depth of the left and right subtrees and adding 1.

    • The maximum depth of an empty tree is 0.

    • Example: For a binary tree with root node A, left child B, and right child C, the maximum depth would be 2.

  • Answered by AI
  • Q2. Is anagram or not
  • Ans. 

    An anagram is a word or phrase formed by rearranging the letters of another, using all original letters exactly once.

    • Anagrams must use all the original letters exactly once.

    • Example: 'listen' and 'silent' are anagrams.

    • Anagrams can be phrases too: 'A gentleman' and 'Elegant man'.

    • They are often used in word games and puzzles.

  • Answered by AI

Skills evaluated in this interview

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, SQL, Hibernate, Spring Boot 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. The problem of implementing a stack using queues involves using two queues to s...read more
  3. On the basis of priority, in which order will you place these - Money, Smartnes...read more
What are the most common questions asked in HashedIn by Deloitte HR round?

The most common HR questions asked in HashedIn by Deloitte interview are -

  1. Where do you see yourself in 5 yea...read more
  2. why should we hire y...read more
  3. What are your strengths and weakness...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.

Overall Interview Experience Rating

4.3/5

based on 97 interview experiences

Difficulty level

Easy 13%
Moderate 84%
Hard 4%

Duration

Less than 2 weeks 68%
2-4 weeks 21%
4-6 weeks 7%
More than 8 weeks 4%
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 376 Interviews
CitiusTech Interview Questions
3.3
 • 290 Interviews
NeoSOFT Interview Questions
3.6
 • 280 Interviews
Altimetrik Interview Questions
3.7
 • 240 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.1
 • 193 Interviews
View all

HashedIn by Deloitte Reviews and Ratings

based on 474 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 474 Reviews and Ratings
Data Engineer

Pune,

Gurgaon / Gurugram

+1

1-3 Yrs

₹ 10.1-18.4 LPA

Oracle Data Integrator Developer

Kolkata,

Pune

+1

4-6 Yrs

Not Disclosed

Senior Data Engineer / Data Engineer

Hyderabad / Secunderabad,

Chennai

+1

2-4 Yrs

₹ 7-9 LPA

Explore more jobs
Software Engineer
483 salaries
unlock blur

₹8 L/yr - ₹14.4 L/yr

Software Engineer2
460 salaries
unlock blur

₹12 L/yr - ₹21 L/yr

Software Developer
221 salaries
unlock blur

₹8.1 L/yr - ₹17.4 L/yr

Senior Software Engineer
219 salaries
unlock blur

₹13 L/yr - ₹21.4 L/yr

Software Engineer II
209 salaries
unlock blur

₹11.5 L/yr - ₹19 L/yr

Explore more salaries
Compare HashedIn by Deloitte with

ITC Infotech

3.7
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

Xoriant

4.1
Compare
write
Share an Interview