Tip 1 : Always try your hands on development part also
Tip 2 : Focus on standard problems of dsa
Tip 3 :Use platform like coding ninjas to solve DSA problems it helps you to track and boost your confidence.
Tip 1:Mention atleast 4 projects in your resume
Tip 2:Make sure to mention work experience as an intern or something similar.
Timing - 5 pm
Interviewer was very humble
He asked 3 DSA Problems.



1. K is a non-negative integer.
2. Absolute Difference between two integers A and B is equal to the difference of maximumOf(A, B) and minimumOf(A, B).
3. Pair of integers should have different indices in the array.
Tip 1:Go for brute force approach
Tip 2:try to get full problem statement
Tip 3:Ask for edge cases.



'arr' = [1, 2, 3]
Here, we have three different types of fruits. We can pick [1, 2] or [2, 3]. We can pick a maximum of two fruits.
Hence, we return 2.
Tip 1:Ask for edge cases
Tip 2:ask for proper clarification
Timing - 5-6 pm
Very humble interviewer
He asked lld also



You can’t sell without buying first.
For the given array [ 2, 100, 150, 120],
The maximum profit can be achieved by buying the stock at minute 0 when its price is Rs. 2 and selling it at minute 2 when its price is Rs. 150.
So, the output will be 148.
Tip 1:Ask for clarification



The profit of the Mukesh Business over ‘N’ days is shown by array/list ‘profit’. It may contain negative values as there will be a loss on those days.
Tip 1:In DP problems clear everything with interviewer before you start coding
Design a chess board of dimension 8*8 and mention all the classes and attributes required.Create a driver class from which chess game will start .
Tip 1:In LLd ask for all requirements
Timing - 2-3 pm
Interviewer was very nice
He was senior engineering manager in company.
Design a exam portal with different features such as authentication, Authorization and marking of students.All classes and entities should be there with relational mapping with database.Also draw ER diagram for same.
Tip 1:When creating entities thing of why that particular entity is useful
It was managerial round . interviewer was very humble .
How you will make a product scalable describe approaches.
How will you manage your work timing with college .
Tip 1:In managerial round try to add those things only which you know properly.

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