Tip 1 : Good Knowledge of Time and Space Complexity
Tip 2 : Practice DSA Questions
Tip 1 : Have some projects on your resume.
Tip 2 : Do not put false things on your resume.



Input: 'n' = 1986.
Output: [14, 10]
Explanation: Even digits are 8 & 6, and odd digits are 1 & 9. The sum of even digits = 14, and the sum of odd digits = 10.
Difference between Stack and Queue Data Structures
Tip 1 : Keep your DS logic revised



If the first linked list is 1 -> 2 -> 3 -> 4 -> 5 -> NULL and the second linked list is 4 -> 5 -> NULL.
The two numbers represented by these two lists are 12345 and 45, respectively. So, adding these two numbers gives 12390.
So, the linked list representation of this number is 1 -> 2 -> 3 -> 9 -> 0 -> NULL.



For the given binary tree:

The Inorder traversal will be [5, 3, 2, 1, 7, 4, 6].
Algorithm Inorder(tree)
1. Traverse the left subtree, i.e., call Inorder(left-subtree)
2. Visit the root.
3. Traverse the right subtree, i.e., call Inorder(right-subtree)
Basically we TCS HR professionals may ask you tricky questions during the HR interview so they can evaluate your basic skills as well as clarify the points you mentioned on your resume.
1 .Why do you opt for TCS only?
2. Will you be able to relocate?
3. What is the Difference between product-based & service-based companies?
Tip 1 : Do not put false things on your resume.
Tip 2 : it's important to plan how to respond to the tricky questions so that you can answer them confidently.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: