Tip 1 : implementation of oops concept in real life.
Tip 2 : Practice questions based on recursion and don't ignore basic or simple questions
Tip 3 : If you don't have time for preparation then try to focus on existing knowledge rather than trying to learn something new because coding needs practice not cramming of code or logic.
Tip 1 : Don't mention some random projects which you are not sure about or copied from Google or somewhere else.
Tip 2 : Interviewer will ask anything from your resume so be prepared for it.
Follow the current or updated resume format
Assessment test contains different sections - mcq coding round, behavioral test,personality based test, workstyle report, english.
The app was user friendly



F(n) = F(n-1) + F(n-2),
Where, F(1) = F(2) = 1.
For ‘N’ = 5, the output will be 5.


It was a TR+HR round
Questions based on resume were asked like difference between an id and a class selector, static and dynamic website, basics of Artificial Intelligence,oops concepts etc.
Difference between dynamic and static website, id and a class, what is artifical intelligence and its usage, oops concepts etc.



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

Traverse the linked list using two pointers.
Move one pointer eg slow by one and another pointer eg fast by two.
If these pointers meet at the same node then there is a loop. If pointers do not meet then linked list doesn’t have a loop.

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?