Tip 1 : Revise OOPS concepts.
Tip 2 : Learn about the company background and what they do.
Tip 1: Keep the resume short and crisp.
Tip 2: Mention skills and projects that you are confident with.
I received a call at evening, they asked me about my projects, which domain were they from, why did I chose them, etc. They also asked why I applied for this particular role despite there being many other openings in different domains as well. Then they asked how many hours will I be able to devote, what is my college schedule, when is the 4th year about to end, etc.
It was a coding round in which they gave me a coding question, asked me to solve it and then explain my approach and its reasoning.



Two sum array problem - Problem: Given an array of integers nums and an integer target, return the indices of the two numbers that add up to target.
Constraints:
Each input has exactly one solution.
You may not use the same element twice.
You can return the answer in any order.
Tried the brute force approach but was asked to optimize the code. Then I reduced the looping process from 1 nested loops which was O(n^2) time complexity to a single loop of O(n)
It was a coding round in which they gave me a question on tree traversal.



Binary trees - Problem: Given the root of a binary tree, return its inorder traversal (Left, Root, Right).
Follow-up: Can you implement the traversal iteratively?

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