Tip 1 : Practice DSA question as much as you can (mostly focus on easy to medium) once you fell confident in these you might go for higher levels.
Tip 2 : Be confident during the interview about your solution and try to start discussing the questions and your solution with a naive approach at first barring that there are any time restrictions and you feel lagging. For practice, you can prefer Coding Ninjas and Geeks For Geeks/Leetcode
Tip 1 : Keep it short and simple. Mention the academic and professional projects you've done only if you have good grip on them and not to forget to revise them if it is mentioned in resume.
Tip 2 : Go through job description thoroughly and try to present you skills in resume that it suits the demand of role. like if you already have some work-ex you can mention Performance improvements you did for eg- reducing latency etc
3 coding question were asked i completed all three but people who do even 2 usually get through. I remember only one.



One of the questions was deleting nth node from end of the linked list.



Input : 1 -> 2 -> 3 -> 4 -> 'NULL' and 'K' = 2
Output: 1 -> 2 -> 4 -> 'NULL'
Explanation:
After removing the second node from the end, the linked list become 1 -> 2 -> 4 -> 'NULL'.

Two coding questions were asked I remember 1.



The width of each bar is the same and is equal to 1.
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].
Output: 10
Explanation: Refer to the image for better comprehension:

You don't need to print anything. It has already been taken care of. Just implement the given function.
This was low level design round where I was asked to design bookMyShow search feature and some other discussion around "cancel order" feature in any ordering system. Mostly focus is on your classes/interfaces and apis and a bit on database design as well.
This was the last round and was managerial with some behavioural as well as bit of technical on previous projects/works resume based questions along with few technical discussions on tools/technology you have used in your past project.
Why should we hire you?
What keeps you motivated?

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?