Tip 1 : If you are looking for fullstack roles, prepare CSS well
Tip 2 : Prepare 2 pointer Array questions
Tip 1 : If you have any python or cloud related experience, do put it and make it stand out.
Tip 2 : They would lay more emphasis on the projects, sometimes even more than the interview itself.



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?
Had to make a connection to a DB via NodeJS. Then take input from a form and feed it into a database.
Created a connection in Node.
Created a form in HTML
Fetched the data and fed it to the API
Did some processing and sent it to the database
4 litre water puzzle
Tip 1 : Understand the problem in detail
Tip 2 : Discuss possible cases
Tip 3 : Communicate your thoughts clearly on your approach
Gave CSS code and asked me to debug it to make the functionality work
I understood the result expectation first
I analyzed the given code
There was an issue in the parent and child selection, so I fixed that.
The interviewer tried to confuse me by asking few variations.

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?