Tip 1: Continuously practice coding.
Tip 2: Read and review fundamentals.
Tip 3: Do as many coding questions as you can.
Tip 1: Make a one-page resume.
Tip 2: Include only the things you are confident about.
It was a round based on DSA and fundamentals.



It can be shown that Mean and Median is in the form of P/Q, where P and Q are coprime integers and Q != 0. You need to return P and Q.
For Mode, if the highest frequency of more than one element is the same, return the smallest element.
For Example, for the given array {1, 1, 2, 2, 3, 3, 4}, the mode will be 1 as it is the smallest of all the possible modes i.e 1, 2 and 3.
Just applied simple maths.
Asked a lot of questions about MYSQL and NOSQL databases. How do they work, the difference between them, where to use which?
It was a DSA cum system design round.



Design a data structure, where it performs the delete operation(only the last element), insert operation, and gives min value in all the elements in constant time complexity.
I solved this by using stack, storing pair in the stack where one value will be the original value and the other value will be min value till now.
It was an HR round. Discussed about company’s culture, vision, and growth. Discussed salary and all.
Questions about the previous experience, why I want to join Zomato, what are my expectations and all.
Tip 1: Read about the company before going into the HR round.
Tip 2: Give honest answers

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?