Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at least 2 good projects and you must know every bit of them.
Tip 1 : Have at least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
This was a Machine Coding Round where my knowledge of LLD was tested
Design a Food Ordering App like Zomato (main focus was on Low level Design Concepts)
In this round, I was asked 3 coding questions wherein I was expected to come up with the most optimal approaches with proper time and space complexities



The same letter cell should not be used more than once.
For a given word “design” and the given 2D board
[[q’, ‘v’, ‘m’, ‘h’],
[‘d’, ‘e’, ‘s’, ‘i’],
[‘d’, ‘g’, ‘f’, ‘g’],
[‘e’, ‘c’, ‘p’, ‘n’]]
The word design can be formed by sequentially adjacent cells as shown by the highlighted color in the 2nd row and last column.







1
/ \
2 3
The root to leaf path 1->2 represents the number 12.
The root to leaf path 1->3 represents the number 13.
The total sum of all the possible root to leaf paths is 12+13 = 25
The output may be very large, return the answer after taking modulus with (10^9+7).
System Design- Similar to the SplitWise application
No code is expected but I tried to give pseudo code which consumed more time than I thought.
Able to cover only some requirements and failed to manage time in a better way.
Design a Splitwise Application.
For splitting bills with friends and family, Splitwise can track each expense and the amount that each person in the group owes. Rather than paying each bill individually, the app allows users to total all of the expenses that they owe and automatically transfer the total payment to others in the group.

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?