Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Every skill must be mentioned.
Tip 2 : Focus on skills, projects and experiences more
First Technical Round totally focused on data structures.



Conditions for valid parentheses:
1. All open brackets must be closed by the closing brackets.
2. Open brackets must be closed in the correct order.
()()()() is a valid parentheses.
)()()( is not a valid parentheses.



Input:
'num1' : 1 -> 2 -> 3 -> NULL
'num2' : 4 -> 5 -> 6 -> NULL
Output: 5 -> 7 -> 9 -> NULL
Explanation: 'num1' represents the number 321 and 'num2' represents 654. Their sum is 975.
Some theory questions related to DBMS and one coding question at last was asked.
What are ACID properties?
What is normalisation?
Explain various normalised forms.



1. Both STR and PTR consist of English uppercase letters.
2. Length of string 'STR' will always be greater than or equal to the length of string ‘PTR’.
3. In case, there is no anagram substring, then return an empty sequence.
4. In case of more than one anagrams, return the indices in increasing order.
Simple HR Round.
Introduce yourself
What are your hobbies?
What is your expected salary?
Where do you see yourself in 3 years?
What do you expect from NSquare during your working period?

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