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 26 Mar 2025

Top HashedIn by Deloitte Interview Questions and Answers

View all 130 questions

HashedIn by Deloitte Interview Experiences

Popular Designations

119 interviews found

I appeared for an interview in Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 85 Minutes
Round difficulty - Medium

3 Coding questions were asked . 1 - easy , 2- medium , 3 - medium -hard .

  • Q1. 

    Convert Binary Tree to Mirror Tree

    Convert a given binary tree into its mirror tree, where the left and right children of all non-leaf nodes are interchanged.

    Input:

    An integer ‘T’ denoting the number o...
  • Ans. 

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

    • Traverse the tree in postorder fashion and swap the left and right children of each node.

    • Recursively call the function on the left and right subtrees.

    • Modify the tree in place without creating a new tree.

    • Example: For input 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1, the output should be 7 4 2 1 6 3 5.

  • Answered by AI
  • Q2. 

    Binary Palindrome Check

    Given an integer N, determine whether its binary representation is a palindrome.

    Input:

    The first line contains an integer 'T' representing the number of test cases. 
    The next 'T'...
  • Ans. 

    Check if the binary representation of an integer is a palindrome.

    • Convert the integer to binary representation

    • Check if the binary representation is a palindrome by comparing it with its reverse

    • Return true if it is a palindrome, false otherwise

  • Answered by AI
  • Q3. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Create a dynamic programming table to store the number of ways to make change for each value up to the target value.

    • Iterate through each denomination and update the table accordingly.

    • The final answer will be the value in the table at the target value.

    • Consider edge cases such as when the target value is 0 or when ...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

This was the combo of coding the subject theory round . I was several DSA problems . I was able to give optimal solutions for them .Also the questions related to OS , CN and DBMS were asked.

  • Q1. 

    Palindrome Permutation - Problem Statement

    Determine if a permutation of a given string S can form a palindrome.

    Example:

    Input:
    string S = "aab"
    Output:
    "True"
    Explanation:

    The permutation "aba" o...

  • Ans. 

    Check if a permutation of a string can form a palindrome.

    • Create a frequency map of characters in the string.

    • Count the number of characters with odd frequencies.

    • If there is at most one character with an odd frequency, the string can form a palindrome.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

Main focus was on design .

  • Q1. Design a Movie Player system
  • Ans. 

    Design a Movie Player system

    • 1. Create a user interface for selecting and playing movies

    • 2. Implement features like play, pause, stop, rewind, fast forward

    • 3. Include options for adjusting volume and screen brightness

    • 4. Support different video formats like MP4, AVI, MKV

    • 5. Allow users to create playlists and save favorite movies

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in BangaloreEligibility criteriaNoHashedIn interview preparation:Topics to prepare for the interview - DSA , OS , DBMS , CN , System Design ,ProgrammingTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Brush up your concept of DBMS , OS and CN
Tip 2 : Practise DSA properly
Tip 3 : Make you resume crisp and clear

Application resume tips for other job seekers

Tip 1 : Make you resume short and clear .
Tip 2 : Mention you projects with deployed links.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

I applied via Referral and was interviewed before Nov 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 - Coding Test 

First round is a basic DS-Algo Round. It was a pen & paper interview. 2 interviewers asked me to write code for some problems such as:
1. You have an unsorted array of 0s and 1s, find the first 1. Different approaches for it.
2. What is setTimeOut in Node.JS?
3. How can you use 2 stacks as an array.
4. You have 2 sorted arrays. Merge them into a single array.

Round 3 - Technical 

(8 Questions)

  • Q1. What are OS processes?
  • Ans. 

    OS processes are instances of a program that are being executed by the operating system.

    • Processes are managed by the operating system's scheduler.

    • Each process has its own memory space and system resources.

    • Processes can communicate with each other through inter-process communication (IPC).

    • Examples of processes include web browsers, media players, and text editors.

  • Answered by AI
  • Q2. What are threads? What is the purpose?
  • Ans. 

    Threads are lightweight processes that enable multitasking within a single process.

    • Threads allow multiple tasks to be executed concurrently within a single process.

    • They share the same memory space and resources of the parent process.

    • Threads can improve performance by utilizing available CPU resources more efficiently.

    • Examples include web servers handling multiple requests simultaneously and video games rendering graphi

  • Answered by AI
  • Q3. Why should one use Node.JS?
  • Ans. 

    Node.js is a powerful and efficient server-side JavaScript runtime environment.

    • Node.js is fast and scalable, making it ideal for building real-time applications.

    • It uses an event-driven, non-blocking I/O model, which makes it lightweight and efficient.

    • Node.js has a large and active community, with many useful libraries and modules available.

    • It allows for easy sharing of code between the server and client, using JavaScri...

  • Answered by AI
  • Q4. What is difference between Python and Node.JS?
  • Ans. 

    Python is a general-purpose language while Node.JS is a JavaScript runtime environment.

    • Python is used for web development, data analysis, artificial intelligence, and scientific computing.

    • Node.JS is used for building scalable network applications and real-time web applications.

    • Python is slower than Node.JS in terms of performance.

    • Python has a larger standard library than Node.JS.

    • Python is easier to learn and has a simp

  • Answered by AI
  • Q5. What is the difference between SQL and NoSQL?
  • Ans. 

    SQL is a relational database management system while NoSQL is a non-relational database management system.

    • SQL databases are table-based while NoSQL databases are document-based, key-value pairs, graph databases, or column-based.

    • SQL databases are structured while NoSQL databases are unstructured.

    • SQL databases use SQL (Structured Query Language) for querying and managing data while NoSQL databases use different query lan...

  • Answered by AI
  • Q6. High Level Design for a Reddit type application
  • Ans. 

    A Reddit-like application for sharing and discussing content

    • User authentication and authorization

    • Post creation and voting system

    • Commenting system

    • Subreddit creation and management

    • Search functionality

    • Real-time updates using websockets

  • Answered by AI
  • Q7. What are CORS? How to handle them?
  • Ans. 

    CORS stands for Cross-Origin Resource Sharing. It is a security feature implemented in web browsers to restrict web pages from making requests to a different domain.

    • CORS is used to prevent malicious websites from accessing sensitive data from other websites.

    • To handle CORS, the server needs to include specific headers in the response to allow the browser to make requests from a different domain.

    • The most common header us...

  • Answered by AI
  • Q8. What is CRFS? The experience around working with it.
Round 4 - One-on-one 

(4 Questions)

  • Q1. The final round was with a Senior Manager and he asked about my previous work experience.
  • Q2. Low Level Design for Authentication
  • Ans. 

    Low level design for authentication

    • Define authentication requirements

    • Choose appropriate authentication mechanism

    • Design authentication flow

    • Implement secure storage of credentials

    • Consider multi-factor authentication

    • Include error handling and logging

  • Answered by AI
  • Q3. Have you managed a team before
  • Q4. Architecture Design for an e2e system that takes input from user to the response shown to the user
  • Ans. 

    An e2e system architecture design for user input to response output

    • Identify user requirements and define system goals

    • Choose appropriate technologies and frameworks

    • Design system components and their interactions

    • Ensure scalability, reliability, and security

    • Test and validate the system before deployment

  • Answered by AI

Interview Preparation Tips

Topics to prepare for HashedIn by Deloitte Senior Software Engineer 1 interview:
  • Data Structures
  • Database
  • Algorithms
  • High level design
  • OS
Interview preparation tips for other job seekers - 1. HashedIn looks for technically sound people. Language is not a restriction.
2. The preference is to hire people who can do full-stack development.
3. The expectation for a 3-4 years experience Engineer is to be able to handle small teams and lead projects.

Skills evaluated in this interview

Top HashedIn by Deloitte Senior Software Engineer 1 Interview Questions and Answers

Q1. What is CRFS? The experience around working with it.
Add answer

Senior Software Engineer 1 Interview Questions asked at other Companies

Q1. Architecture Design for an e2e system that takes input from user to the response shown to the user
View answer (1)

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    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.

    Inpu...

  • 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.

  • Answered by AI
Round 2 - Face to Face 

Round duration - 60 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo criteriaHashedIn interview preparation:Topics to prepare for the interview - Problem solving, Java, SQL, HIbernate and System designTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Solve basic data structures question
Tip 2 : master in front end or backend 
Tip 3 : practice some basic SQL queries

Application resume tips for other job seekers

Tip 1 : Keep it short and simple
Tip 2 : Update according to the JD

Final outcome of the interviewSelected

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 (43)

I applied via Inhyre and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Postman headers ?
  • Q2. API SECURITY TESTING?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be original during interview and answer the questions with confidence.

Quality Engineer Interview Questions asked at other Companies

Q1. What is MSA and addition of msa version, type of msa ,what different between variable data and attibute data .why difine flase and miss rate calculate by msa .
View answer (10)

HashedIn by Deloitte interview questions for popular designations

 Software Developer

 (17)

 Software Engineer

 (15)

 Devops Engineer

 (8)

 Software Engineer2

 (8)

 Software Engineer II

 (4)

 Front end Developer

 (3)

 Software Development Engineer

 (3)

 Intern

 (3)

I applied via Referral and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. DSA and System Design

Interview Preparation Tips

Interview preparation tips for other job seekers - Average in DSA and System Design

Software Engineer III Interview Questions asked at other Companies

Q1. Find the highest floor, from where if an egg is dropped will not break. k floor building and n eggs are given.
View answer (2)

Get interview-ready with Top HashedIn by Deloitte Interview Questions

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 (220)

Jobs at HashedIn by Deloitte

View all

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 (220)

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)

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

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 89 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 339 Interviews
CitiusTech Interview Questions
3.3
 • 276 Interviews
NeoSOFT Interview Questions
3.6
 • 268 Interviews
Tiger Analytics Interview Questions
3.7
 • 227 Interviews
Altimetrik Interview Questions
3.8
 • 221 Interviews
Episource Interview Questions
3.9
 • 220 Interviews
Xoriant Interview Questions
4.1
 • 183 Interviews
Incedo Interview Questions
3.1
 • 183 Interviews
View all

HashedIn by Deloitte Reviews and Ratings

based on 426 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 426 Reviews and Ratings
Software Engineer
451 salaries
unlock blur

₹5 L/yr - ₹16.5 L/yr

Software Engineer2
396 salaries
unlock blur

₹8.5 L/yr - ₹23.3 L/yr

Senior Software Engineer
224 salaries
unlock blur

₹8.1 L/yr - ₹30 L/yr

Software Engineer II
185 salaries
unlock blur

₹9.7 L/yr - ₹20 L/yr

Software Developer
176 salaries
unlock blur

₹5.2 L/yr - ₹17 L/yr

Explore more salaries
Compare HashedIn by Deloitte with

ITC Infotech

3.6
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

Xoriant

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