Tip 1 : Don't Miss Development skill, at least do one project with your knowledge so you have some topic to share your experience with interviewer.
Tip 2 : Practice DSA problem starts with easy problem then move to medium and then do some hard question is enough to build strong knowledge in DSA and try to practice all Data structures implementation.
Tip 3 : Understand the basic of your subjects like CN, DSA, DBMS, OS don't skip them
Tip 1: Try to mention good projects on your resume with detailed tech stack information, emphasizing technologies in which you have a strong understanding.
Tip 2: Include your coding profile and achievements, such as your Coding Ninjas ranking, etc.



1. Each array element should belong to exactly one of the subsets.
2. Subsets need not always be contiguous.
For example, for the array : [1, 2, 3], some of the possible divisions are
a) {1,2} and {3}
b) {1,3} and {2}.
3. Subset-sum is the sum of all the elements in that subset.
Input: 'n' = 5, 'arr' = [3, 1, 5, 2, 8].
Ouput: 1
Explanation: We can partition the given array into {3, 1, 5} and {2, 8}.
This will give us the minimum possible absolute difference i.e. (10 - 9 = 1).



Input: 'list' = [1, 2, 3, 4], 'k' = 2
Output: 2 1 4 3
Explanation:
We have to reverse the given list 'k' at a time, which is 2 in this case. So we reverse the first 2 elements then the next 2 elements, giving us 2->1->4->3.
All the node values will be distinct.
This is a famous problem on Linked List,
Step 1 - At starting you just think about how we reverse a whole linked list
Step 2 - Apply the same logic on the K group and call the function in recursion
It is the HR Round, and the basic technical round is not in-depth, just asking about project overview and tech which I used in my project.
At starting I felt nervous, but the interviewer was very calm that's why my interview went very smoothly
Tell me about yourself
What are your hobbies?
What are your strengths and weaknesses?
What was your project and explain it?
Tip 1 : Make your brief introduction 2 to 3 minutes long
Tip 2 : Try to cover all main points regarding you, your work experience, Project, and Achievement.
Tip 3 : Make sure to tell only that point which you can tackle on cross-questions

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: