i
HashedIn by Deloitte
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by
I appeared for an interview in Feb 2021.
Round duration - 85 Minutes
Round difficulty - Medium
3 Coding questions were asked . 1 - easy , 2- medium , 3 - medium -hard .
Convert a given binary tree into its mirror tree, where the left and right children of all non-leaf nodes are interchanged.
An integer ‘T’ denoting the number o...
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.
Given an integer N
, determine whether its binary representation is a palindrome.
The first line contains an integer 'T' representing the number of test cases.
The next 'T'...
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
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...
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 ...
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.
Determine if a permutation of a given string S
can form a palindrome.
string S = "aab"
"True"
The permutation "aba" o...
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.
Round duration - 60 Minutes
Round difficulty - Easy
Main focus was on design .
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
Tip 1 : Brush up your concept of DBMS , OS and CN
Tip 2 : Practise DSA properly
Tip 3 : Make you resume crisp and clear
Tip 1 : Make you resume short and clear .
Tip 2 : Mention you projects with deployed links.
I applied via Referral and was interviewed before Nov 2021. There were 4 interview rounds.
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.
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.
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
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...
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
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...
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
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...
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
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
I appeared for an interview before May 2021.
Round duration - 60 Minutes
Round difficulty - Easy
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.
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.
Round duration - 60 Minutes
Round difficulty - Easy
Tip 1 : Solve basic data structures question
Tip 2 : master in front end or backend
Tip 3 : practice some basic SQL queries
Tip 1 : Keep it short and simple
Tip 2 : Update according to the JD
I applied via Inhyre and was interviewed in Sep 2021. There were 4 interview rounds.
HashedIn by Deloitte interview questions for popular designations
I applied via Referral and was interviewed in Nov 2021. There were 3 interview rounds.
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.
I applied via Campus Placement and was interviewed in Jul 2021. There were 4 interview rounds.
I applied via Referral and was interviewed before Dec 2021. There were 3 interview rounds.
Algorithms and DBMS interview asking for finding count, min, and max. Finding whether a string is palindrome or not.
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...
I applied via Campus Placement and was interviewed in Jul 2021. There were 4 interview rounds.
I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.
Top trending discussions
The duration of HashedIn by Deloitte interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 89 interviews
Interview experience
based on 426 reviews
Rating in categories
2-6 Yrs
Not Disclosed
4-9 Yrs
Not Disclosed
Software Engineer
451
salaries
| ₹5 L/yr - ₹16.5 L/yr |
Software Engineer2
396
salaries
| ₹8.5 L/yr - ₹23.3 L/yr |
Senior Software Engineer
224
salaries
| ₹8.1 L/yr - ₹30 L/yr |
Software Engineer II
185
salaries
| ₹9.7 L/yr - ₹20 L/yr |
Software Developer
176
salaries
| ₹5.2 L/yr - ₹17 L/yr |
ITC Infotech
CMS IT Services
KocharTech
Xoriant