Tip 1 : Practice Atleast 2 projects
Tip 2 : Practice easy-medium leetcode problem
Tip 3 : Practice OOPS , DBMS, and SQL
Tip 1 : One page resume
Tip 2 : Do not put false things on resume.
It was basically simple aptitude round in morning and it was conducted in college lab



Consider ARR = [1, 2, 3, 4, 4], the duplicate integer value present in the array is 4. Hence, the answer is 4 in this case.
A duplicate number is always present in the given array.



For a string “qaacde”, This string has two same adjacent characters.
So, one possible way to rearrange the string is “qacade”. Now, this string does not have two adjacent characters that are the same.
Basically, it was the second round, and 1-2 coding questions were asked, questions were simple and the test was conducted in the lab of the college



Step 1 : add Base Case
Step 2 : Made a Recursive call



N = 5
S = [‘aaa’, ‘bbb’, ‘ccc’, ‘aaa’, ‘bbb’, ‘aaa’]
ANSWER:- The answer should be ‘bbb’ as it is repeated 2 times and is the second most repeated word in the array [after the word ‘aaa’ which is repeated 3 times].
It was in the evening, and it was face to face interview with Technical + HR in this, technical questions were asked.
Tip 1: Practise interview questions from internet about OOPS
Tip 2: Do practice it with code



1. The array consists of only 3 distinct integers 0, 1, 2.
2. The array is non-empty.

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