Tip 1: Complete a DSA playlist first.
Tip 2: Have some good projects with unique ideas. Do not outsource; create them from scratch and have a deep knowledge of the structure, fundamentals, ideas, solutions, and implementations of your projects.
Tip 3: Do not remain silent during an interview while solving questions. Share your thought process with the interviewer.
Tip 1: Keep skills and projects position-specific; do not include unnecessary skills.
Tip 2: Follow an ATS-friendly resume template, preferably a single page, created using Overleaf.

Print only those distinct strings that can be formed by removing the minimum number of parentheses.
If the string is already balanced, return the original string.
(()()()
Expected strings are:
[ (()()), (())(), ()()() ]



Given an array of integers with only a single unique no. Rest are repeated, find that unique no.
Expected TC: O(n) or lesser.
Write code of singleton and prototype in Java.
Explain 4 core principles of OOPS. (Learn)
Find the second highest salary of an employee.


The width of each bar is the same and is equal to 1.
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].
Output: 10
Explanation: Refer to the image for better comprehension:

You don't need to print anything. It has already been taken care of. Just implement the given function.
Given 25 horses find the top 5 fastest horses with a minimum no of races given you can only race 5 horses at a time.
Explain your best project in detail.
What are your weaknesses and strengths?

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