Tip 1 : Interview is more like a two-way discussion rather than a question-answer session, feel free to ask for help/hints if you're stuck.
Tip 2 : Even if you don't know the solution to the problem just try to work out a naive solution. You can optimize it later.
Tip 3 : Make sure to read out the interview experiences of other people who have applied for the same role/company in the past
Tip 1: Keep it concise and to the point.
Tip 2: Don't forget to show your best achievements
Test was active from 28th September 8 PM till 2 AM (29th September’20). We could attempt at any time.
1.5 Hr Duration
Two coding questions.



In the below graph, there exists a cycle between vertex 1, 2 and 3.

1. There are no parallel edges between two vertices.
2. There are no self-loops(an edge connecting the vertex to itself) in the graph.
3. The graph can be disconnected.
Input: N = 3 , Edges = [[1, 2], [2, 3], [1, 3]].
Output: Yes
Explanation : There are a total of 3 vertices in the graph. There is an edge between vertex 1 and 2, vertex 2 and 3 and vertex 1 and 3. So, there exists a cycle in the graph.



Online video call round on Microsoft Teams
Interviewer was very friendly.
This round is often called Domain Discussion Round.



Input:
str="AABC" k=1
Output:3
Explanation: Replace 'B' with 'A', we will get "AAAC" and the longest substring with same character is "AAA" of length 3.
One hour HR round.
Also called Core Values Interview.
The Interviewer was a senior level employee and was very friendly.
You should know everything you have mentioned in your resume. I you are not confident about a topic, don't mention it on your resume.
I would advise you to look up the most commonly asked behavioral questions in the interview and the STAR method to approach these types of questions.
Do not mug up answers to these questions, but instead come up with your own situations that you dealt with while doing internships/projects etc.
For questions like "Tell me about your weakness or Tell me about a time you messed up" do not say I don't have any weaknesses or I never mess up. Everyone makes mistakes, the key to this question is to not focus on the mistake/weakness but instead focus on how you overcame it and what you learnt from it.

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?