Tip 1: You don’t need to be an expert in all DSA concepts. Be strong in the basics and learn other topics gradually.
Tip 2: Work on projects; they will give you practical knowledge and help you stand out from others.
Tip 3: Be consistent and stay focused.
Tip 1: Quantify your work with numbers.
Tip 2: Mention project details clearly, including the tech stack used.
It was scheduled in the morning at 10 AM.
Initialize count = 0
Loop i from 1 to 100:
If i is divisible by 3 and the sum of the digits of i is even:
count += i
Print count
Basic mathematics is needed, along with a good understanding of conditional statements.
1)Reverse the digits of 'n'.
2)Square the reversed number.
3)From the squared result, extract only the even digits (0, 2, 4, 6, 8) and print them in the order they appear.
Reverse the number using a loop. Square the reversed number, then traverse it and print the even digits (digit % 2 == 0).
What is the difference between a process and a thread?
Tip 1: Explain what a process and a thread are.
What happens if a high-priority process goes into an infinite loop?
Tip 1: Explain starvation.
Find the second-highest salary among the employees. (Practice)
Tip 1: Use LIMIT and OFFSET.
What is the use of indexing in table rows?
Tip 1: Faster querying.
Explain normalization and its types with examples. (Learn)
Tip 1: Explain the benefits of normalization.
Tip 2: Describe the types of normalization with sample table data.
How does the OS manage memory?
Technical round on DSA and Java frameworks.



Place each number at its correct index (nums[i] → index nums[i] - 1) using swaps. Then scan through the array — the first index where nums[i] ≠ i + 1 is the missing number.



You may assume that given ‘X’ and ‘Y’ definitely exist in the given binary tree.
For the given binary tree

LCA of ‘X’ and ‘Y’ is highlighted in yellow colour.
If the root is null or matches p or q, return the root. Recurse left and right; if both return non-null, the root is the LCA; otherwise, return the non-null child.
HR interview.
Can you tell me about yourself?
Tip 1: Start with your name, education, and what you’re currently doing.
Tip 2: Mention one strength or interest.
Tip 3: End with what you’re looking for.
What are your strengths and weaknesses?
Tip 1: Avoid saying, “I’m perfect in all aspects.”
Tip 2: Give honest answers.
Where do you see yourself in 5 years?
Tip 1: Keep it realistic and focused on learning.
Tip 2: Mention that you want to grow technically.
Tell me about a challenge you faced and how you handled it.
Tip 1: Use the STAR format.
Tip 2: Keep it short but genuine.

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