Tip 1 : Practice more string and array questions
Tip 2 : Mention only those thing in resume on which you're confident
Tip 1 : Should be of one page
Tip 2 : Mention at least 2 good projects
2 coding questions from Data Structures were asked.



Water trapping problem
Tip 1 : Practice arrays and string questions



It was a basic question. Applied basic approach to it and I passed this question
I got a mail just one day before the interview and interviewer is more interested in projects and data structures. He also asked me about some of the concept related to operating system like dead lock condition, round robin scheduler.



Deletion of middle node in LL
Tip 1 : Try to dry run it first
Tip 2 : Practice loops



A subarray is a contiguous block of elements that can be formed by deleting some (possibly zero) elements from the beginning or the end of the original array.
If the given array is [1, 2, 3, 4, 5], then [2, 3, 4], [1, 2], [5] are some subarrays while [1, 3], [2, 3, 5] are not.
If there are multiple subarrays with minimum length, find one which appears earlier in the array (i.e. subarray that starts with lower index).
If there is no such subarray, print an empty line.
This is salary discussion round and hr asked me about my future plans
Tip 1 : Good projects
Tip 2 : Knowledge about basic questions

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?