First Round - Three dsa (array,dp)
Second Round - interview ,hr
2 day process first day, there is first round in that we want to solve 3 dsa question and 2 day interview based on resume also they ask dsa question in interview also
I applied through college or university. I interviewed at HashedIn by Deloitte (Bhopal)
Interview
It was on-campus drive and took 2 days.
There were 4 rounds. The first round had taken place in my college and it was just coding round and it had 3 coding question.
And on the basis of your assessment score we moved to the next round. And it take place in bhopal and there were 5 college shortlisted students.
Now on second day my first round had taken by tech lead of company and it has taken around 1.5 hour and I cleared the round. He has asked DSA based question and tell to me first tell the approach then write the code.
In the next round tech lead can not take my interview as he has taken my first round, so two person has taken my 2nd round interview and it was based on completely database design, queries, and E-R diagram and taken around 1.5 hour. After clearing that round I moved to HR round and I was only the person who's HR has taken by 6 person and it has taken around 2 hours. And finally I was offered Software Engineer Job in same day.
I cleared that round and
Interview questions [1]
Question 1
1. string based question.
2.sort the array which contain either 0 or 1
3. It was dp based question little bit difficult and it was based on subarray concept .
2nd round:
You have given two sorted linked list you have to find the median of sorted merge linked list which does not contain any duplicate element.
If it has odd number of nodes in merged linked list then return middle one and if it contain even number of nodes then return avg of middle nodes.
2.Rotate the array k times and return the same array in O(n) time.
I applied through college or university. The process took 1 day. I interviewed at HashedIn by Deloitte (Kāvali) in Feb 2025
Interview
That was an online coding assessment
there were 3 questions
they have given 90 mins time to solve all the questions only public test cases were visible and private testcases were execute once submitted we can't edit code after submission so...only 1 submission allowed not like leetocode :) that was the thing I didn't expected.
Interview questions [3]
Question 1
1. There was a car on 0,0 on a matrix and string s contains the instructions as r-right,l-left,u-up,d-down ex: rrudl like this we need to find whether after all operations does the car stand on the same 0,0 or not
3. Your car moves on a number line with 'A' (accelerate) doubling speed and moving forward, while 'R' (reverse) flips the direction. The goal is to find the shortest sequence of these commands to reach a given target position.(dp)