Tip 1 : Your concepts should be crystal clear while preparing.
Tip 2 : Practice atleast the basic concept questions like array declaration, etc.
Tip 1 : Don't make your resume of more than 1 page for 0-5 YOE.
Tip 2 : Include min 2 projects on resume to prove you have the hands on experience.
For a .NET developer, first they asked me some of the basic questions on .NET and C#. After that given 2-3 problems to solve and also asked to write some code for a windows service.



1. If ‘k’ is not present in the array, then the first and the last occurrence will be -1.
2. 'arr' may contain duplicate elements.
Input: 'arr' = [0,1,1,5] , 'k' = 1
Output: 1 2
Explanation:
If 'arr' = [0, 1, 1, 5] and 'k' = 1, then the first and last occurrence of 1 will be 1(0 - indexed) and 2.
Can be easily solved using Binary Search
College background and regarding projects I'll be working on

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?