Tip 1 : Main focus of any CS/IT student should be towards DSA without it you won't be able to crack coding interviews.
Tip 2 : Focus more on learning/finding the most optimal solution of any coding problem.
Tip 3 : Don't rush to solve lots of question without learning it in depth (if you are able to solve questions then only you can rush to solve questions otherwise it will not be any beneficial for you because you don't know the concept behind that. if you again encounter the same problem then you will not be able to solve. So, don't rush to solve questions )
Tip 1 : Go with single column resume design because it will easily parsed without much impact.
Tip 2 : Do not put false things on resume
Interview Timing is from 5pm to 6pm
Cool and friendly environment
Interviewer was friendly, humble and gave me hint when i stuck somewhere


If the given matrix is:
[ [1, 2, 5],
[3, 4, 9],
[6, 7, 10]]
We have to find the position of 4. We will return {1,1} since A[1][1] = 4.
Step 1 : Need to compare target value with matrix first and last value
Step 2 : then need to apply Binary Search Algo
Interview Timing is from 6pm to 7pm
Cool and friendly environment
Interviewer was friendly, humble
Some questions related to Database, SQL queries, some are related to OOPS concept and Behavioral questions
Tip 1 : Don't panic while giving answers
Tip 2 : Listen question properly before explaining the solution
Tip 3 : Through out the interview keep positive attitude and thinking and before giving interviews revise your notes or stuff related to interview.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?