Tip 1 : Consistency is the key. Keep practicing on consistent basis.
Tip 2 : Try thinking of an approach to a problem before looking at the solution. Avoid looking at the solution as much as possible.
Tip 3 : Focus on Computer Fundamentals like OS, DBMS, CN too as they play a crucial role in your interview.
Tip 1 : Don't write fake projects/skills in your resume. There will be times when you will be asked about things you have written in your resume.
Tip 2 : Make sure your resume is full of important keywords/sections.



1. 0-based indexing is used in the array.
2. We only care about the garden from 0 to 'N' only. So if i - 'ARR'['i'] < 0 or i + 'ARR'['i'] > 'N', you may ignore the exceeding area.
3. If some fountain covers the garden from position 'A' to position 'B', it means that the water from this fountain will spread to the whole line segment with endpoints 'A' and 'B'.



You are given ‘STR’ = “ababcd”. Then our answer will be “ab”. The prefixes “a” and “ab” occur the maximum number of times, i.e., 2. As the prefix “ab” is longer than “a” so, our answer will be “ab”.



ARR[1,3,6] is a Squareful array as 1+3=4 i.e. 2^2 , 3+6=9 i.e. 3^2.
[1,6,3] and [6,1,3] are different permutations.



Let ‘ARR’ be: [1, 2, 4]
Then the largest subarray with continuous sequence will be: [1, 2]
So the length will be 2.
I was asked about multithreading, multiprocessing, process scheduling, disk scheduling. All these topics were discussed in depth.
Apart from this there was also in depth discussion on the projects that I had done and the ones mentioned in my resume along with my internships.

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?