Tip 1 : Do at least 2 good projects and make an attractive resume mentioning all your skills in the best possible way(Don't include any False commitments)
Tip 2 : Practice easy to medium level coding questions from geeks for geeks or Leetcode.
Tip 3 : Prepare everything mentioned in your resume properly including Java, SQL.
Tip 1: Include projects and experiences in detail.
Tip 2: Make an eye-catching resume clearly mentioning all your skills including subjects like data structures, JAVA, SQL, etc. The database is a very important skill if you have its knowledge.
Two coding problems were there



The series is 1-based indexed.
I solved the problem using the dynamic programming concept creating a 1-D array and using the previous 2 values to calculate the next final leading to the final result.



Input: ‘N’= 25, ‘s’ =”Take u forward is Awesome”
Output: 10 11 4
Using hashing and set to identify consonant and vowels in a string
SQL and Database problem
Three DBMS questions were asked: -
1. Difference between delete, truncate, drop commands
2. Explain the concept of various types of keys used in DBMS along with examples
3. Queries including group by and order by clauses.
Good knowledge of DBMS and SQL will help you clear this kind of questions



The given linked lists may or may not be null.
If the first list is: 1 -> 4 -> 5 -> NULL and the second list is: 2 -> 3 -> 5 -> NULL
The final list would be: 1 -> 2 -> 3 -> 4 -> 5 -> 5 -> NULL
Try to solve this problem in linear time complexity and constant space complexity.
Real-life problems asked by the interviewer
1. What is the most difficult decision you had to make and how did you make it?
2. A situation that frustrated you and how did you deal with it?
3. When did you feel a great sense of achievement and why?
Tip 1: Your communication skills and confidence matters a lot.
Tip 2: The way you think and the way you deal with various situations.
Tip 3: Good presentation of your thoughts is very important. Do practice the same with some friends before the interview.

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