Tip 1 : Do some projects.
Tip 2 : Practice problem solving questions.
Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.
Timing was 12 PM. Interviewer was nice.



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.



Consider the array { 1, 1, 0, 2, 0 }.
For the given array the modified array should be {0,0,1,1,2} .
Arrays { 0, 0, 1, 2, 1 } and { 0, 0, 2, 1, 1 } are not the correctly reorganized array even if they have all the zero values pushed to the left as in both the arrays the relative order of non-zero elements is not maintained.
Can you solve the problem in linear time, and constant space?
Write SQL query to find second highest salary from a table.
Given a Circle and Six Straight Lines. What is the maximum number of pieces that one can cut the circle using these six straight lines?

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