Tip 1 : Focus on DSA practice
Tip 2 : Make development projects
Tip 3 : Practice regularly
Tip 1 : Mention only those topics which you know very well
Tip 2 : Mention projects
Test was for 90 minutes. Environment was good because it was online test.



Kevin has played this game once. He can only reach the level ‘i’ if and only if he has already cleared the level (‘i’ - 1).
It was 1pm, and interviewer was good and make me feel comfortable in the interview.



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?
Initialize three pointers prev as NULL, curr as head, and next as NULL.
Iterate through the linked list. In a loop, do the following:
Before changing the next of curr, store the next node
next = curr -> next
Now update the next pointer of curr to the prev
curr -> next = prev
Update prev as curr and curr as next
prev = curr
curr = next



For the following array:
[0 1 1 1 0 0 1]
The output should be [0 0 0 1 1 1 1].
You have to sort the array in place.
Maintain two indexes and Initialize the first index as 0 and second index n-1.
Now follow the following algorithm until left < right
a) Keep incrementing left index while there are 0s at it
b) Keep decrementing index right while there are 1s at it
c) Whenever left < right, exchange arr[left] and arr[right]
What are OOPS pillars?
What is the difference in encapsulation and abstraction?
How do you apply abstraction with an example and code?
Some more problems from abstraction in deep.
Tip 1 : Read OOPS concepts very thoroughly
Tip 2 : Focus on abstraction pillar more.
In this round, he asked me very basic HR interview questions as why do you want to join this company? where do you see yourself in 5 years? what are your expectations from company?
Tip 1 : Read about company in detail
Tip 2 : Know about your role very well
Tip 3 : Ask some questions from your side as well.

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?