Tip 1 : Be thorough with Data Structures and algorithm and their practical usage
Tip 2 : Have decent knowledge of time and space complexity
Tip 3 : Be extreme prepared for anything you write on your resume
Tip 1 : Write skills which you actually know of.
Tip 2 : Must have thorough knowledge of projects mentioned in resume.



For a given string “BaaB”
3 possible palindrome partitioning of the given string are:
{“B”, “a”, “a”, “B”}
{“B”, “aa”, “B”}
{“BaaB”}
Every substring of all the above partitions of “BaaB” is a palindrome.






[2,3,4] - median is 3.
[2,3] - median is floor((2+3)/2) = 2.
Your strength and weakness?
What is your favourite subject and why?
Give one example where you have worked well under pressure.

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?