Tip 1 : First of all, clear basic concepts of Oops, Sql, Core Java, and Dbms.
Tip 2 : Practice DSA as much as possible and solve at least 200 questions
Tip 3 : Try to maintain good coding profiles.
Tip 4 : Also, brush up your development skills.
Tip 1 : Mention your coding profile and Development skills.
Tip 2 : Mention your projects and give the URL of live projects.
This round was conducted in the college campus only. It was conducted around 10 AM and more than 250 students appeared in that round and 30 were able to clear that round. The mcq were easy but the coding question was bit hard.



String S = ababa
Index i = 1
len = 3
The answer to the above test case is 2 since there are two substrings that start at index 1 (1 - based indexing) - “aba”, “ababa”. Both these have a length of at least 3.
It was a face to face interview round in the college campus. It was around 1 PM, only 30 students were eligible to appear in this interview. The interviewer was a very nice person he asked me questions related to my project, Oops, Core Java and DBMS. He also asked me a coding question which I was able to solve efficiently and on time. The interviewer was very happy with my problem solving skills.



The same letter cell should not be used more than once.
For a given word “design” and the given 2D board
[[q’, ‘v’, ‘m’, ‘h’],
[‘d’, ‘e’, ‘s’, ‘i’],
[‘d’, ‘g’, ‘f’, ‘g’],
[‘e’, ‘c’, ‘p’, ‘n’]]
The word design can be formed by sequentially adjacent cells as shown by the highlighted color in the 2nd row and last column.

1 . We do simple DFS where if the index <- [0, L-1] we mark 2-d vector vis as true and check the next cells to visit based on its matching with word[index + 1] .
2. If it matches we try to explore that cell else we don't by repeating step 1.
3. If we reach index L - 1 we return true and we do and OR operation among all the possibilites because we want just one case to be true.
It was scheduled around 6 PM in the college campus. It consisted of basic HR questions.
Introduce yourself.
What are your strengths and weaknesses?
Why do you want to join us?

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