Tip 1 : Mention the tools and technologies you have worked on in the past work experience and deeply go through all those stuff once.Do not mention any extra tools and technologies in the resume on which you have not worked too much or in which you are not confident enough. Delhivery asks questions from your past work experiences
Tip 2 : Brush up your concepts of array,string,linkedlist,dynamic programming and tree from geeksforgeeks.Practice for the top array,string ,linked list and tree related questions.
And practice them on leet code as well because test cases on leet code are hard as compared to geeksforgeeks.
Tip 3 : Prepare for the system design related.Start from geeksforgeeks and youtube channel Gourav Sen for the basic conecpts of system design, then you can prepare from a paid course. and practice at least top system design questions like design Uber,instagram,twitter etc
Tip 1 : Mention the projects you have worked in the past.
Tip 2 : do not mention any extra tools and technologies on which you are not confident enough
It was mixed of data structures and system design round
Design HLD for e-commerce delivery system and the database table structures for it in such a way that it is highly scalable
Tip 1:We should be good with fundamentals like LLD and HLD
Tip 2:We should be good at the database design and its basic concepts like normalisation,ACID properties,indexing. and sql vs nosql conecpts
Tip 3:We should be aware of horizontal scaling concepts like data sharding and table partitioning and should ask interviewer about the scale of system and any other constraints



We cannot use the element at a given index twice.
Try to do this problem in O(N) time complexity.
Firstly I approached it with a brute force approach with 2 loops and found that the number
Then I tried another approach
I initialized an empty hash table.
Did following for each element A[i] in A[]
If s[x – A[i]] is set then print the pair (A[i], x – A[i])
Insert A[i] into s.
It was a system design round with engineering manager
Given a large excel sheet in which there are source and destinations as columns and rows respectively and cells corresponding to it are empty.We have to make a service which will compute the distances between source and destinations given in the sheet.Sheet can have lakhs of rows and columns
Tip 1:We should be good with fundamentals like LLD and HLD
Tip 2:We should be good at database,caching,asynchronous task processing,multi threading concepts
Tip 3:We should ask any assumptions,constraints,external services used in the system and the scale of the system as well
It was basically an HR round with the senior director HR of Delhivery
Why do you want to join Delhivery?
Why are you leaving your current organisation?
what are your strong points and weak points?
Are you currently leading a team or some members in your current organization?
How often do you miss project deadlines

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?