Tip 1 : Go through Basics First so that you can build your concept fastly in DSA
Tip 2 : Solve Problem by analyzing /Dry & run approch on notebook with any example and then write code on editor.
Tip 3 : Do not focus on count of problem first, focus on concept that you built during solving each problem then count already got increasing.
Tip 1 : Have good command over altleast 2 project
Tip 2 : Do not write any fake point in resume . Be real in Tech term
2 Coding Problem
10 MCQ from Quant + Reasoning
10 MCQ from Coding Language (JAVA, C++)
10 MCQ from Computer Network , DBMS , OS



Consider following matrix:
1 2 -1 -4 -20
-8 -3 4 2 1
3 8 10 1 3
-4 -1 1 7 -6
The rectangle (1,1) to (3,3) is the rectangle with the maximum sum, i.e. 29.
1 2 -1 -4 -20
-8 |-3 4 2 | 1
3 | 8 10 1 | 3
-4 |-1 1 7 | -6
Step 1 : I first applied Brute Force Method
Step 2 : Interviewer asked me to dry run with any example
Step 3 : Interviewer was okay with my effort.



The Linked Lists, where a1, a2, c1, c2, c3 is the first linked list and b1, b2, b3, c1, c2, c3 is the second linked list, merging at node c1.

Interviewer asked me to write code of Pattern that shared by interviewer on screen.
I solved that pattern then asked question from Tree, HashMap and then switch of CAP theorem of DBMS .
After these discussion, they started question from Dijkestra algo and asked to write code of Dijkestra then switch to OS Scheduling Algorithm Questions.
I was able to answer all above questions.




As taught in the video, you just have to modify the code so that instead of printing numbers, it should output stars ('*').
I applied Brute force and interviewer was happy.

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