Tip 1 : make a daily habit of solving questions on any platform you choose
Tip 2 : try to learn atleast one new concept daily
Tip 3 : work on your basics in object oriented and subjects as well
Tip 1 : your skills should be specifically mentioned on it ( especially your coding profile)
Tip 2 : your resume should be modified According to the role you are applying for eg if you apply for data analyst you should mention about your python related skills if you have )
There were 2 DSA questions and both were mathematical. I remember only 1. I was able to get it 80 per right. The round was held at night .The environment was decent i have encountered no issues with the compiler .

Input: 'A' = 5, 'B' = 3, 'C' = 4
Output: 3
Here only three possible combinations are:
(7, 5) Transfer 2 apples to the first basket and 2 apples to the second basket.
(9, 3) Transfer 4 apples to the first basket and 0 apples to the second basket.
(8, 4) Transfer 3 apples to the first basket and 1 apple to the second basket.
Only above combinations for (A, B) satisfies the condition that all 'C' apples are used and ('A' > 'B')
It was held at 1 in afternoon. The interviewer made the round very comfortable. He asked me open the editor and write pseudo code .



• The reference to the head of the linked list is not given.
• The node to be deleted is not a tail node.
• The value of each node in the Linked List is unique.
• It is guaranteed that the node to be deleted is present in the linked list.

It was held at 1 in afternoon.






• The left subtree of a node contains only nodes with data less than the node’s data.
• The right subtree of a node contains only nodes with data greater than the node’s data.
• Both the left and right subtrees must also be binary search trees.

Level 1:
All the nodes in the left subtree of 4 (2, 1, 3) are smaller
than 4, all the nodes in the right subtree of the 4 (5) are
larger than 4.
Level 2 :
For node 2:
All the nodes in the left subtree of 2 (1) are smaller than
2, all the nodes in the right subtree of the 2 (3) are larger than 2.
For node 5:
The left and right subtrees for node 5 are empty.
Level 3:
For node 1:
The left and right subtrees for node 1 are empty.
For node 3:
The left and right subtrees for node 3 are empty.
Because all the nodes follow the property of a binary search tree, the above tree is a binary search tree.
It was held at 12 in afternoon
They ask me to implement interface abstraction and a number of object oriented concepts including inheritance etc .static functions and all.
Tip 1 : good understanding of oops
Tip 2 : try to solve even if you don't know clearly
It was help at 5 in evening
Some general talks asking about my interest and what are my goals .
Tip 1 : be confident
Tip 2 : be bold

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