Tip 1: Try designing and developing as many systems as possible.
Tip 2: Clear your doubts and understand concepts in depth.
Tip 3: Learn about integrating new technologies.
Tip 1: Keep your resume compact and precise.
Tip 2: Highlight well-documented, impactful projects.
This was an AI interview round. The questions were based on React.js and Java Spring Boot, as I had mentioned these technologies on my resume.
1 DSA question + project




1. You are not required to print the output explicitly, it has already been taken care of. Just implement the function and return the ‘K-th’ smallest element of BST.
2. You don’t need to return ‘K-th’ smallest node, return just value of that node.
3. If ‘K-th’ smallest element is not present in BST then return -1.
Tip 1: In-order traversal helps.
Tip 2: It gives the 1st smallest element, then the 2nd, and so on.
Tip 3: Update the counter, and when the counter reaches k, return the element.
The majority of the focus was on past experience and projects.
Tip 1: Design the HLD first, then the LLD.
Tip 2: Implement loose coupling between components.
Tip 3: Write solid business logic and thoroughly test APIs.

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