Tip 1 : Focus majorly on Data Structures and algorithms
Tip 2 : Master on One Programming Fundamentals
Tip 3 : Build one live Project on any tech stack.
Tip 1 : Be concise and Confident what you have written in your resume.
Tip 2 : Make sure to mention any coding Profile which u practice on and one live project.
First round has 4 coding Questions in which i have solved 3 complete and 1 partial.



Input: 'N' = 4 'K' = 3
Output: 1
There is only one permutation [0, 1, 2, 3] such that a number of elements with 'ARR[I] = I' is 'K' = 3.









1
23
456
7891
Every single question were based on the concept of data structure.
I have to answer my approach for solving a particular real life Problem.



'S' = "{}()".
There is always an opening brace before a closing brace i.e. '{' before '}', '(' before ').
So the 'S' is Balanced.
Declare a character stack S.
Now traverse the expression string exp.
If the current character is a starting bracket (‘(‘ or ‘{‘ or ‘[‘) then push it to stack.
If the current character is a closing bracket (‘)’ or ‘}’ or ‘]’) then pop from stack and if the popped character is the matching starting bracket then fine else brackets are not balanced.
After complete traversal, if there is some starting bracket left in stack then “not balanced”.
Find the angle between the minute and The hour clock
if its 4:10
Why do u want to join Nagarro
Explain About Yourself.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
When does a stack underflow occur?