Tip 1: Do DSA regularly and try to cover all the topics.
Tip 2: Prepare the core subjects like DBMS, and OS.
Tip 1:Resume should be of One page with simple template
Tip 2:Mention atleast two projects
How did you implement authentication in the project (using JWT Tokens)? (Link)



Given a linked list that is sorted based on absolute values. Sort the list based on actual values.
Examples:
Input : 1 -> -10
output: -10 -> 1
Input : 1 -> -2 -> -3 -> 4 -> -5
output: -5 -> -3 -> -2 -> 1 -> 4
Step 1: I first thought of the brute-force approach, but it was too lengthy.
Step 2: Then the interviewer provided me with a hint by emphasizing that it is sorted on absolute values.
Step 3: Then I figured out the approach; I had to traverse the linked list, and whenever a negative node appeared, I just added it to the head of the linked list.



Write a code to search an element in a BST(Binary search tree) and also return its level.
Step 1: As it was an easy problem, I directly used recursion to search for the elements on the left and right of the tree by comparing the elements.
Step 2: Also, I passed a variable (Level) which I incremented on every recursive call.
What is ACID Properties? Explain with an example.(Link)
What is normalization?(Link)

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the purpose of the return keyword?