Tip 1 : Learn DSA and practice atleast 20 quality questions from each topic by selecting the tag in leetcode.
Tip 2 : Give weekly contests in leetcode to get familiar with time bound problem solving.
Tip 3 : Give mock interviews to gain more confidence.
Tip 1 : Have atleast 2 decent projects.
Tip 2 : Mention coding profiles if any exist.
The test was conducted in the evening, it was an algorithmic problem solving test which consisted 3 coding questions. Out of which one was combinatorial question, one was dp question which is a variant of weighted job scheduling, third question was based on finding cycles in the graph.



(a, b) -> (a + b, b)
(a, b) -> (a, a + b)
For the coordinates, source point = (1, 1) and destination point = (3, 5)
The output will be true as the destination point can be reached using the following sequence of moves:
(1, 1) -> (1, 2) -> (3, 2) -> (3, 5)



The start time of one job can be equal to the end time of another.



The round was conducted in the morning. Interviewer introduced himself and asked to introduce myself. Then he said that there will be two coding questions that need to be solved.



Input: Consider the following Binary Tree:
Output:
Following is the level-order traversal of the given Binary Tree: [1, 2, 3, 5, 6, 4]



If two or more such subarrays exist, return any subarray.
The round was conducted in the afternoon. Interviewer introduced himself and asked to introduce myself. Then he said that there will be two coding questions that need to be solved.



Let ‘N’ be: 10
The 10th ugly number is: 12



[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.
This round was managerial kind of round which included situation based questions and algorithmic questions.
What is indexing, advantages and disadvantages of the same. Explain sharding. Mysql vs nosql. Explain deadlocks. How to avoid them.
Tip 1 : learn dbms and operating systems concepts thoroughly.



1. Each node is associated with a unique integer value.
2. The node for which the successor is to be found is guaranteed to be part of the tree.
Cultural fit questions were asked in this round.
What is your best learning. What is your biggest achievement. What are your short term and long term goals. What do you expect from an organisation. What are your strengths. What is your weakness.

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