Tip 1: Do regular practice of DSA (You can refer any programming sheet)
Tip 2: Master any Programming Language
Tip 3: Do Extra Subjects (core engineering subjects) and do at least Some basics of DBMS
Tip 1: The DSA level should be good.
Tip 2: Good command of any one programming Language.
It has 2 Coding Questions of easy-medium level, and the time limit was 60 minutes only.


Input: 'arr' = [1, 4, -2] and 'k' = 2
Output: 5
Explanation: The subarray with the largest sum is [1, 4]. So the sum will be 5.
First, I applied brute force, but it showed TLE.
Then, I applied optimization and was able to solve the problem.



Suppose given input is "abacb", then the length of the longest substring without repeating characters will be 3 ("acb").
The first approach was brute force, and then, I optimized it using the HashMap.
Questions were mainly asked on DSA Java.
Questions were mainly asked on DSA, Java, and SQL.

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