Tip 1 : whenever you get an interview call make sure to read other interview experiences of that company and do company wise preparation.
Tip 2 : At the last moment dedicate your time in revising the concepts you already know .
Tip 3 : Be thorough with the projects you have mentioned and revise theory subjects .
Tip 1 : Description about Project should be clear, understandable and in bullet point with tech used being mentioned properly. Link of a hosted project should be there with the project along with the links of coding platforms
Tip 2 : Mention Only those skills in the resume which you are confident about .



If the given ‘POINTS’ array is [[1,2,5], [3 ,1 ,1] ,[3,3,3] ],the answer will be 11 as 5 + 3 + 3.



Consider ARR = [[1 , 0 , 1] ,
[1 , 1 , 1] ,
[1 , 1 , 1]],
the Good matrix after updating the given matrix as described in the question is
[[0 , 0 , 0] ,
[1 , 0 , 1] ,
[1 , 0 , 1]].
Since ARR[0][1] is 0, we need to set all element’s values present in 0-th row and 1-th column to 0.
You do not need to print the matrix. Just change in the given input.



Assume that the Indexing for the linked list always starts from 0.
If the position is greater than or equal to the length of the linked list, you should return the same linked list without any change.
The following images depict how the deletion has been performed.





Firstly, I told them about the recursive approach, explained it, and discussed the time and space complexity. After that, I went on with the dynamic programming approach. They also discussed why dynamic programming needs to be used here and why brute force cannot be used and other related questions based on the algorithm were there.
Find the number of steps that needs to be taken by a climber to climb a tower of a particular height. Provided the length covered in one step by the climber.
One project from my resume was discussed. I was asked to show the demo of the project and the questions related to it were asked. What technologies and why I used a particular technology in my project, was also discussed.
A high level design question was also asked which revolved around the online money transaction and its security in online purchasing sites.
Tip 1 : Be thorough with the projects you mentioned in your resume. Be sure to deploy your application this creates a good impact, prepare how you will walkthrough your application and explain it.
Tip 2 : This round was mostly based on the direction you take it to. You will be asked the question based on your approaches and ideas.

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?