Tip 1 : Do Competitive Programming consistently.
Tip 2 : Practice as many questions possible in DSA covering all topics.
Tip 3 : Have atleast a single project of which you have complete knowledge with good hands-on of the technology used in it.
Tip 1 : Have good projects of which you have complete knowledge.
Tip 2 : Showcase your coding skills by adding various Coding profiles like: Codeforces, Codechef, etc.


Input: ‘arr’ = [1, 1, 2] and ‘k’ = 2
Output: 2
Explanation: If we want to make two subarrays, there are two possibilities: [[1], [1, 2]] and [[1, 1], [2]]. We can see that the maximum sum of any subarray is minimized in the second case. Hence, the answer is 2, which is the maximum sum of any subarray in [[1, 1], [2]].
This was aptitude + verbal reasoning round. The duration of this round was 15 min in which there were 50 questions were given to solve. Minimum of 45 score was needed to qualify this round. There will be two attempts given to clear this round. One should have good grip on aptitude and English to clear this round.
This was a resume shortlisting round. In this round the interviewer will check if the projects mentioned in the resume are genuinely done by the candidate and not copied from YouTube or any other online source. One should have good understanding of projects mentioned. There should be good projects too. Make sure you are clear of every tiny details of the implementation. He asked me about why I used the technologies that I did for the project, and then about certain improvements that could be made to the project and how I would go about them.
This was a DSA round. I was told there will be 2 questions to solve. The interviewer was friendly and pushed me more than my limits to think and solve the problems. Make sure you communicate everything that runs through your mind.






This round will be taken by the Vice president of Trilogy Innovations. This will be an open ended problem solving discussion round where you'll be given some tech problem to solve. One should know the basics of system design to clear this round. You'll have to analyse the problem and design a complete working system that'll solve the problem. This round lasted for more than 1 hour.

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