Tip 1 : Be patient and be consistent (It took me 3 months before i could get my first job)
Tip 2 : Practice DSA and if possible DP everyday
Tip 3 : Only include main projects in Resume (don't include projects like TO-DO app etc)
Tip 4 : Don't panic in interviews, interviewers are friendly
Tip 5 : Company specific preparation (EX : Some companies have System design rounds and some dont)
Tip 1 : Include only the main projects in resume
Tip 2 : Try to do it ATS friendly
Tip 3 : Don't lie on resume (Managerial round is fully dependent on things in your resume and managers don't expect freshers to be out of box and know everything, so just include what you know)
It included 36 mcqs covering questions in DBMS, OS, Networking etc and 1 coding question which i felt was a little tough (it was some thing mix of matrix traversal and DP combined).



If two rows have the same number of 1’s, return the row with a lower index.
If no row exists where at-least one '1' is present, return -1.
Input: ‘N’ = 3, 'M' = 3
'ARR' =
[ [ 1, 1, 1 ],
[ 0, 0, 1 ],
[ 0, 0, 0 ] ]
Output: 0
Explanation: The 0th row of the given matrix has the maximum number of ones.
Interviewer asked me a DSA based question and then she asked me questions on ReactJS, Mongo queries, MySQL queries etc



If the given array is [1, 3, 2], then you need to return [3, -1, -1]. Because for 1, 3 is the next greater element, for 3 it does not have any greater number to its right, and similarly for 2.
It was managerial round, i was asked questions on everything that i have included in my resume



The strings are non-empty.
The strings only contain lowercase English letters.
What are your hobbies?
How do you manage stress?
She explained me about CTC and other benefits.

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