Tip 1: Practice DSA problem sets.
Tip 2: Build projects to showcase the skills mentioned in your resume.
Tip 3: Include only those skills in your resume that you have actually worked on.
Tip 1: List work experience in bullet points and keep the resume concise.
Tip 2: Clearly mention your role in group projects and include individual projects in your resume.
Quantitative Ability - 25 ques
Logical Reasoning - 15 ques
Code debugging - 15 ques
Code completion - 5 ques
English Comprehension - 15 ques


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]].

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