Tip 1 :Work on core concepts of programming
Tip 2 :Solve Array , String and LinkedList related problems as much as you can
Tip 3 :You should have through knowledge about your projects
Tip 1 : Additional information like online courses completed can help you stand out from the crowd.
Tip 2 : Mention those skills in which your have good knowledge
My interview was scheduled for around 9:45 PM. This was my first interview. The interview lasts for 15 minutes. Firstly, he(The interviewer) introduce himself and asked for my introduction.
He asked me my language preference, I usually code in Java.



In the given linked list, there is a cycle, hence we return true.

SIMPLE APPROACH USING FAST AND SLOW POINTER APPROACH:
EXPLAINATION USING RACE EXAMPLE:
We can simply consider two cars, one is moving fast and one is moving slow, there's no, point that a slow car can met the fast car at any point of time except start and end.
If they anyhow met that means it's a lap race, and at that moment the slow car and fast car, will be at a certain place.
And now we know how it works.
bool detectLoop(Node* head) {
// Here both cars currently at the start point of the race.
Node*slowCar = head, *fastCar = head;
// CHECKING IF THE RACE IS SINGLE LAP RACE OR NOT.
while(fastCar != NULL && fastCar->next != NULL) {
// MOVING FAST CAR BY TWO STEPS AND SLOW CAR BY ONE.
slowCar = slowCar->next, fastCar = fastCar->next->next;
// IF SOMEHOW THEY MET THEN it is a multiple lap race.
if(fastCar==slowCar) return true;
}
// If they didn't met that means it was a single lap race.
return false;
}
1.Introduction.
2.Strength and weakness.
3.Why do you think this is your strength/weakness?
4.Why do you want to join Nagarro?
5.Willing to reallocate.
6.Do you have any questions for me?
Tip 1:Be calm
Tip 2:Don't Fake Infront of HR about your Strength and Weakness.
Tip 3:Try to ask questions about the Tech stack on which company is currently working.

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?