Tip 1 : Practice atleast 250 Coding questions, and clear with OS, Networking and Database concepts
Tip 2 : Do atleast 2 Good projects
Tip 3 : Go through company specific questions before appearing to that company.
Tip 1 : Have atleast 2 Good projects on resume
Tip 2 : Do not put false information and don not put any information you are not sure.
There are 2 coding questions. Easy to moderate level.



Input: 'arr' = [2, 2, 2, 2, 0, 0, 1, 0]
Output: Final 'arr' = [0, 0, 0, 1, 2, 2, 2, 2]
Explanation: The array is sorted in increasing order.
step1 : I simply sorted the array. It was not good enough
step2 : Interviewer asked to not use sort function.
Step 3: Then I gave a solution of remembering the 0s, 1s, 2s count and then wrote 0s, 1s then 2s with the counts each number has.


1. The sizes will range from 1 to ‘N’ and will be integers.
2. The sum of the pieces cut should be equal to ‘N’.
3. Consider 1-based indexing.
Step 1 : I first applied recursion techniques. It was not good enough
Step 2 : Interviewer asked me to optimise the solution
Step 3 : Then I gave recursion + memoization technique and interviewer was satisfied.
It is actually a managerial + HR round.
Interviewer asked about myself, then jumped into my projects.
I explained my projects well.
Asked some questions on OS concepts.
1. Introduction
2. Your strengths and weakness
3. 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?