Tip 1 : Be clear with the basics
Tip 2 : Be familiar with design patterns and system design problems
Tip 3 : Be thorough with the skills mentioned in your resume
Tip 1: Don't lie on your resume
Tip 2: You should be thorough with whatever skill in mentioned on your resume.
Programming, little aptitude and Core subjects’ MCQs (Compiler Design, Operating System, Computer Networks and DBMS)



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.
This was a function problem. We need to complete the function ispar() that takes a string as a parameter and returns a boolean value true if brackets are balanced else returns false. The printing is done automatically by the driver code.



Completed the function kLargest() that takes the array, N and K as input parameters and returns a list of k largest element in descending order.



1 2 3
4 5 6
For the above 2*3 matrix , possible paths are (1 2 3 6) , (1 2 5 6) , (1 4 5 6).
You can return the paths in any order.
Completed the function numberOfPaths() which takes m and n as input parameter and returns count all the possible paths.
The answer was very large, so computed the answer modulo 10^9 + 7.



You can use any string of A multiple times.
A =[“coding”, ”ninjas”, “is”, “awesome”] target = “codingninjas”
Ans = true as we use “coding” and “ninjas” to form “codingninjas”
Completed wordBreak() function which takes a string and list of strings as a parameter and returns 1 if it is possible to break words, else return 0.
No need to read any input or print any output as it was done by driver code.



1. The heights of the buildings are positive.
2. Santa starts from the cell (0, 0) and he has to reach the building (N - 1, M - 1).
3. Santa cannot leave the grid at any point of time.
No need to read input or print anything. Your task is to complete function minJumps() which takes the array arr and it's size N as input parameters and returns the minimum number of jumps. If not possible returned -1.
Face to Face interview
Where do you see yourself after 5 years?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?