Tip 1: Complete at least two good projects and create an attractive resume that highlights all your skills in the best possible way (avoid including any false commitments).
Tip 2: Practice easy to medium-level coding questions from online coding platforms.
Tip 3: Thoroughly prepare everything mentioned in your resume, including Java and SQL.
Tip 1: Include projects and experiences in detail.
Tip 2: Create an eye-catching resume that clearly highlights all your skills, including subjects like Data Structures, Java, SQL, etc. Knowledge of databases is a very important skill to showcase if you possess it.
Timing was in the morning, around 10 a.m. This round was conducted on HackerRank and contained two coding questions of easy to medium level, which varied for all the students taking the test. There were 20 MCQs on topics like Java, Operating Systems, Data Structures, and SQL.
I also took a test for this company last year during the internship season. At that time, the MCQs were based on aptitude and reasoning. Additionally, there were two coding questions, and the timing was divided according to the sections.



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


Input: ‘N’= 25, ‘s’ =”Take u forward is Awesome”
Output: 10 11 4
Simply keep one set of vowels, start comparing them one by one, and print the non-matching letters. That will be our output.
This round was conducted on Cisco WebEx, and the interviewer was very friendly. Firstly, we were briefly asked to introduce ourselves. Then, he moved on to the CV and asked various questions about the projects, certifications, and internships mentioned. He inquired about the implementation of a few features in some of the projects and also asked about the challenges I faced while working on the projects and how I finally overcame them. He also asked about various skills mentioned in the resume.
Good knowledge of DBMS and SQL will help you clear these kinds 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
Divide and conquer algorithm implementation.
This round started with my introduction. Then, he moved on to behavioral questions to understand how we deal with situations and our thought process.
Tip 1: Your communication skills and confidence matter a lot.
Tip 2: The way you think and deal with various situations.
Tip 3: A good presentation of your thoughts is very important. Do practice this 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
How do you remove whitespace from the start of a string?