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

126 Interview questions

A Software Engineer was asked 2w 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 Engineer2 was asked 3w 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 3w 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

What people are saying about HashedIn by Deloitte

View All
a senior product master
1w
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 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. 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
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
Are these interview questions helpful?
A Software Developer was asked 2mo ago
Q. What is the database design for Instagram?
Ans. 

Instagram's database design focuses on user profiles, posts, comments, likes, and relationships for efficient data retrieval.

  • User Table: Stores user information like username, email, password hash, profile picture.

  • Post Table: Contains post details such as image URL, caption, timestamp, and user ID.

  • Comment Table: Links comments to posts and users, storing comment text and timestamps.

  • Like Table: Tracks likes on post...

View all Software Developer interview questions
A Software Engineer2 was asked 3mo ago
Q. Describe the system design of a loan generating system.
Ans. 

Design a scalable loan generating system to process applications, assess risk, and disburse loans efficiently.

  • User Registration: Users create accounts with personal and financial information.

  • Loan Application: Users submit loan applications specifying amount, term, and purpose.

  • Credit Scoring: Integrate with credit bureaus to assess applicant creditworthiness.

  • Risk Assessment: Use algorithms to evaluate risk based on...

View all Software Engineer2 interview questions
A Software Development Engineer was asked 3mo ago
Q. Can you draw your project's schema and table relationships with diagrams?
Ans. 

This project involves a relational database schema for a library management system.

  • Entities: Books, Authors, Members, Loans.

  • Relationships: A Book can have multiple Authors (Many-to-Many).

  • A Member can borrow multiple Books (One-to-Many).

  • Loans table tracks which Member has borrowed which Book.

View all Software Development Engineer interview questions

HashedIn by Deloitte Interview Experiences

128 interviews found

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sort an array of 0s,1s,2s in O(n) time.
  • Ans. 

    Sort an array of 0s, 1s, 2s in linear time.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s.

    • Traverse the array once and swap elements based on their values.

    • The final array will have 0s, 1s, and 2s grouped together in that order.

  • Answered by AI
  • Q2. Kth smallest element in array
  • Ans. 

    Finding the Kth smallest element in an array.

    • Sort the array and return the Kth element.

    • Use a min heap to find the Kth smallest element.

    • Use quickselect algorithm to find the Kth smallest element.

    • Divide and conquer approach using binary search.

    • Use selection algorithm to find the Kth smallest element.

  • Answered by AI
Round 2 - One-on-one 

(3 Questions)

  • Q1. Project related questions
  • Q2. Designing of APIs, SQL query to find second largest value
  • Ans. 

    Designing APIs and finding second largest value in SQL query.

    • For API design, consider RESTful principles and use clear and concise naming conventions.

    • For finding second largest value in SQL, use ORDER BY and LIMIT clauses.

    • Consider edge cases such as duplicates and null values.

    • Test thoroughly to ensure correct functionality.

  • Answered by AI
  • Q3. Find if pair sum exists in array
  • Ans. 

    Check if there exists a pair of numbers in the array that add up to a given sum.

    • Iterate through the array and for each element, check if the difference between the sum and the element exists in the array using a hash table.

    • Alternatively, sort the array and use two pointers to traverse from both ends towards the middle, adjusting the pointers based on the sum of the current pair.

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Design a data structure to store and search strings like in a dictionary.(basically trie) . And some follow ups for modification according to use cases.

Interview Preparation Tips

Topics to prepare for HashedIn by Deloitte Software Developer interview:
  • Data Structures
  • RDBMS
Interview preparation tips for other job seekers - Practice easy to medium searching, sorting , strings and sliding window questions. Basics of all kinds of data structures and their implementation.

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
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. On the basis of priority, in which order will you place these - Money, Smartnes...read more
  3. The problem of implementing a stack using queues involves using two queues to s...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 473 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 473 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
466 salaries
unlock blur

₹8.2 L/yr - ₹15.4 L/yr

Software Engineer2
452 salaries
unlock blur

₹12 L/yr - ₹21 L/yr

Senior Software Engineer
215 salaries
unlock blur

₹12.2 L/yr - ₹21.4 L/yr

Software Engineer II
213 salaries
unlock blur

₹9.7 L/yr - ₹19 L/yr

Software Developer
212 salaries
unlock blur

₹7.8 L/yr - ₹17.7 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