Tip 1: Consistency (Strivers a2z is more than enough).
Tip 2: Don't Compare with others, your time will come.
Tip 3: Focus on one thing, you have a lot of time, if you use it wisely.
Tip 1: Choose project according to the company like mine was fintech so I made a project regarding payment and QR code.
Tip 2: One page resume with links of coding profiles and certifications.
SQL and DSA questions were asked.



You have been given a permutation of ‘N’ integers. A sequence of ‘N’ integers is called a permutation if it contains all integers from 1 to ‘N’ exactly once. Your task is to rearrange the numbers and generate the lexicographically next greater permutation.
I used the optimized approach going from the right to the left finding the greater element and solved it.
Write a SQL Query to display the nth highest salary (e.g., 3rd highest). (Practice)
I was asked technical questions and questions regarding Projects and DSA.



Write a program to find the route from which if sum up from root to leaf will equal to the given number which was provided.
Recursive DFS where I go through each node from top to bottom and subtracted the node value if going to leaf if the value is zero then the route is the desired route and return the ans.
What is the difference between using var and let in a for loop? (Learn)
What will be the output of the following code and why?
for (var i = 0; i < 3; i++) {
setTimeout(() => console.log(i), 100);
}
for (let i = 0; i < 3; i++) {
setTimeout(() => console.log(i), 100);
}
Engineering manager round, asked mainly projects related and previous internship related questions.
Tip 1: I told about my previous internship as a backend developer in a start-up where I build Udemy like website with authentications using jwt tokens.
Tip 2: Told about final year project
Tip 3: Showed GitHub repository and told about features used in Project.

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