Tip 1 : Prepare graphs and DP very well for online exam.
Tip 2 : Having one or two projects in java will give you an edge in the interview.
Tip 3 : Be kind and polite in the interview. Show them that you will be the good fit for their comoany
Tip 1 : Having one or two projects in java will give you an edge in the interview. Keep java project on the top
Tip 2 : Resume should be one page and nothing fancy. Don't mention skills in the resume that you don't have.
Online round was conducted during day time at around 1 pm on 13th of Aug, 2020. Prepare well for DP and Graphs as online questions were from these topics. There were in total 2 questions.
Graph question: 15/15 test cases passed
DP question: 8/15 test cases passed
It was an Audio and video proctored exam.



Step 1:Checking coordinates are valid or not
Step 2: Marking 1 so that next time will not visit
Step 3: If coordinates are valid and not visited and value equal to 1 then call recursively



If the given ‘HEIGHT’ array is [10,20,30,10], the answer 20 as the frog can jump from 1st stair to 2nd stair (|20-10| = 10 energy lost) and then a jump from 2nd stair to last stair (|10-20| = 10 energy lost). So, the total energy lost is 20.
Step 1: Declare a t[] array having size n.
Step 2: initialize the base condition values, i.e t[0] as 0.
Step 3: Set a loop that should traverse the whole array and for every index calculate jumpOne and jumpTwo and set t[i] = min(jumpOne, jumpTwo).
Timing: 3pm daytime
Environment: Interviewer was very friendly.
My Experience: This round was very unique and different one. I was expecting some DSA and problem solving questions
but interviewer asked more questions about my resume and my projects. Basically whole round was revolving around resume.
why did you use this specific tech stack in your project?
what will you do if after joining sapient one of your team members leaves the team and there is a dependency on him?
What are your future goals?
Are you more interested in backend or frontend?
Tip 1 : Be Confident. Read about PS core values before going to the interview.
Tip 2 : Show them that you would be the ideal candidate and right fit for their company
Tip 3 : Don't write any irrelevant skill in your resume that you don't know.
Timing: 6 pm in the evening
Environment: HR was very friendly. She gave me feedback of my previous round.
Why do you think that you will be a good fit for our company?
What kind of environment do you think that you will get after joining fresh?
What did you find most interesting in the presentation that we showed. She was referring to the introductory presentation that every company gives when they visit for hiring.
Tip 1 : Be Confident and polite.
Tip 2 : Right attitude is the key to success.
Tip 3 : Prepare some situation based answers on generally asked HR questions
beforehand.

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?