Tip 1 : Practice Atleast 500 DSA Questions
Tip 2 : Do Atleast 2 projects with complete knowledge of all features you mention in your resume
Tip 3 : Prepare core subject well
Tip 1:Have at least 2 projects on resume.
Tip 2:Do not put false things on resume.



There are three occurrences of the word 'NINJA' in the following grid:

1) Given word will not be a single character.
2) If occurrences of the given word start from two different cells, then these two occurrences are considered to be different.
Consider the word 'XYX' to be searched in the string 'AXYXB'. Here, we find an occurrence of 'XYX' at index 2 going in the right direction, and another occurrence at index 4 going in the left direction.
Although these two words correspond to the same word, they will be considered as different occurrences.
Used backtracking and trie to solve this problem , the given problem was almost similar and the same approach was being applied as word search 2 problem



For the given binary tree:

The Inorder traversal will be [5, 3, 2, 1, 7, 4, 6].
standard problem



The Linked Lists, where a1, a2, c1, c2, c3 is the first linked list and b1, b2, b3, c1, c2, c3 is the second linked list, merging at node c1.

there are multiple approaches to this problem , all the approaches were discussed



exact same problem , first discussed brute force and then optimised approach



Let the given string be “(()())((”.
Here the valid parentheses substrings are: “()”, “()” and “(()())”. Out of these the longest valid string is “(()())” which has a length 6.
backtracking approach and then optimised approach
It was hiring managerial round taken by a senior software engineering manager and projects mentioned in my resume were discussed
Describe about synchronous/asynchronous nature of Node.js
What are the common node modules that you have used in your project and their functionalities
JSON and BSON
what are rest apis and data type returned by apis
discussion of a specific feature implemented by me in the project
Benefits of using MongoDB
Some other problems related to my project involving debugging and some involving scaling
Any further studies plan
Tell me about yourself
Brief description of projects done and extra curricular mentioned
some cross questions

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