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 Jul 2025
Popular Designations

129 Interview questions

A Software Developer II was asked 4d ago
Q. How can you find all subsets of a given list?
Ans. 

To find all subsets of a list, use recursion or bit manipulation to generate combinations of elements.

  • Use recursion: Create a function that includes or excludes each element.

  • Example: For [1, 2], subsets are: [], [1], [2], [1, 2].

  • Use bit manipulation: Each subset corresponds to a binary number.

  • Example: For [1, 2], binary 00 -> [], 01 -> [1], 10 -> [2], 11 -> [1, 2].

  • Iterative approach: Start with an empt...

View all Software Developer II interview questions
A Software Developer II was asked 4d ago
Q. What are the key features and design considerations for creating an application similar to Instagram?
Ans. 

Key features for an Instagram-like app include user profiles, photo sharing, and social interactions.

  • User Authentication: Implement secure sign-up and login processes using OAuth or JWT.

  • Photo Uploading: Allow users to upload images with options for filters and editing (e.g., cropping, brightness).

  • Feed Algorithm: Develop a feed that shows posts based on user preferences and engagement (e.g., likes, comments).

  • Social...

View all Software Developer II interview questions
A Software Engineer was asked 1mo ago
Q. The problem of implementing a stack using queues involves using two queues to simulate the behavior of a stack. The solution typically requires the following steps: \n\n1. **Push Operation**: To push an ele...
Ans. 

Implementing a stack using two queues to maintain LIFO behavior with FIFO operations.

  • Push Operation: Enqueue to empty queue, move elements from non-empty queue, swap queues.

  • Pop Operation: Dequeue from the non-empty queue.

  • Top Operation: Return the front element of the non-empty queue.

  • IsEmpty Operation: Check if the non-empty queue is empty.

  • Example: Pushing 1, then 2 results in top being 2; popping gives top as 1.

View all Software Engineer interview questions
A Software Engineer was asked 1mo ago
Q. What is the complete code for implementing a Tic-Tac-Toe game in C++ using proper object-oriented programming concepts?
Ans. 

A complete C++ implementation of a Tic-Tac-Toe game using object-oriented programming principles.

  • Use a class 'TicTacToe' to encapsulate game logic and state.

  • Implement methods for player moves, checking win conditions, and displaying the board.

  • Utilize a 2D array to represent the game board.

  • Include error handling for invalid moves.

  • Provide a simple text-based interface for user interaction.

View all Software Engineer interview questions
A Software Engineer2 was asked 1mo ago
Q. Given a linked list, determine if it contains a cycle.
Ans. 

Detecting a cycle in a linked list can be done using Floyd's Tortoise and Hare algorithm.

  • Use two pointers: slow and fast. Slow moves one step, fast moves two steps.

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

  • If the fast pointer reaches the end (null), there is no cycle.

  • Example: For a list 1 -> 2 -> 3 -> 4 -> 2 (cycle back to 2), slow and fast will meet at 2.

View all Software Engineer2 interview questions
A Software Engineer2 was asked 1mo ago
Q. Given a string, determine whether it is a palindrome.
Ans. 

A palindrome is a string that reads the same forwards and backwards, like 'radar' or 'level'.

  • Check if the string is equal to its reverse. Example: 'madam' == 'madam'.

  • Ignore spaces and punctuation for a more flexible check. Example: 'A man, a plan, a canal, Panama!' is a palindrome.

  • Consider case sensitivity. Example: 'Racecar' is not the same as 'racecar' unless you ignore case.

View all Software Engineer2 interview questions
A SDE-2 was asked 2mo ago
Q. Design a Jira system integrated with GitHub.
Ans. 

A Jira system integrated with GitHub streamlines project management and version control, enhancing collaboration and tracking.

  • Issue Tracking: Jira allows teams to create, assign, and track issues, while GitHub manages code changes, linking commits to Jira issues.

  • Automation: Use webhooks to automate transitions in Jira based on GitHub events, like moving an issue to 'In Progress' when a branch is created.

  • Pull Reque...

View all SDE-2 interview questions
Are these interview questions helpful?
A Software Development Engineer II was asked 2mo ago
Q. Describe your experience building an API using a Python framework for document processing.
Ans. 

Build a Python API for document processing using a web framework like Flask or FastAPI.

  • Choose a framework: Flask or FastAPI are popular choices for building APIs.

  • Set up the project structure: Create directories for routes, models, and services.

  • Define API endpoints: Use decorators to define routes for document upload and processing.

  • Implement document processing logic: Use libraries like PyPDF2 or docx to read and p...

View all Software Development Engineer II interview questions
A Software Engineer was asked 2mo ago
Q. Write an SQL query to find the second highest salary.
Ans. 

SQL query to retrieve the second highest salary from a salary table.

  • Use the DISTINCT keyword to avoid duplicate salaries.

  • Order the salaries in descending order and limit the results.

  • A common approach is to use a subquery to find the maximum salary that is less than the highest salary.

View all Software Engineer interview questions
A Software Engineer was asked 2mo ago
Q. Given an array of integers, rotate the array to the left by k places.
Ans. 

Rotate an array of strings to the left by k places efficiently.

  • Use the modulo operator to handle cases where k is larger than the array length.

  • Example: For array ['a', 'b', 'c', 'd'] and k=2, result is ['c', 'd', 'a', 'b'].

  • Reverse the entire array, then reverse the first n-k elements and the last k elements.

  • Time complexity is O(n) and space complexity is O(1) if done in place.

View all Software Engineer interview questions

HashedIn by Deloitte Interview Experiences

130 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Kadane's Algorithm
  • Ans. 

    Kadane's Algorithm is used to find the maximum subarray sum in an array.

    • Iterate through the array and keep track of the maximum sum ending at each index.

    • If the sum at any index becomes negative, reset the sum to 0.

    • Return the maximum sum found.

    • Example: For array [-2, 1, -3, 4, -1, 2, 1, -5, 4], the maximum subarray sum is 6 (from index 3 to 6).

  • Answered by AI
  • Q2. Reverse a linkedin list
Round 2 - Technical 

(1 Question)

  • Q1. Design Instagram
Round 3 - Fitment Round 

(1 Question)

  • Q1. Normal intro and hr related questions

Skills evaluated in this interview

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

Software Engineer2 Interview Questions & Answers

user image Macha Jagadeesh

posted on 8 Jul 2025

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

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

  • Q1. Array based DSA questions
  • Q2. Design School time table

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about HashedIn by Deloitte?
Ask anonymously on communities.

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 99 interview experiences

Difficulty level

Easy 12%
Moderate 84%
Hard 4%

Duration

Less than 2 weeks 69%
2-4 weeks 20%
4-6 weeks 7%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 377 Interviews
CitiusTech Interview Questions
3.3
 • 290 Interviews
NeoSOFT Interview Questions
3.6
 • 280 Interviews
Altimetrik Interview Questions
3.7
 • 242 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
Xoriant Interview Questions
4.1
 • 214 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.0
 • 193 Interviews
View all

HashedIn by Deloitte Reviews and Ratings

based on 478 reviews

4.2/5

Rating in categories

4.2

Skill development

4.1

Work-life balance

4.0

Salary

4.4

Job security

4.3

Company culture

3.7

Promotions

3.9

Work satisfaction

Explore 478 Reviews and Ratings
Data Engineer

Pune,

Gurgaon / Gurugram

+1

1-3 Yrs

Not Disclosed

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.1 L/yr - ₹14.7 L/yr

Software Engineer2
467 salaries
unlock blur

₹12 L/yr - ₹21 L/yr

Software Developer
218 salaries
unlock blur

₹7.9 L/yr - ₹17.7 L/yr

Software Engineer II
218 salaries
unlock blur

₹11 L/yr - ₹19 L/yr

Senior Software Engineer
217 salaries
unlock blur

₹12.2 L/yr - ₹21.4 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