Tip 1 : Be well prepared with everything in your resume
Tip 2 : Prepare some good projects
Tip 3 : Be prepared for some HR questions from YouTube
Tip 1: Add atleast 2 projects which showcase your technical skills
Tip 2: Make sure to add true achievements only in your resume
There were MCQ questions on Aptitude , Logical Reasoning & basic questions based on C / C++. The questions were of easy level I would say & I was able to answer most of them.



a) Duplicate elements may be present.
b) If no such element is present return -1.
Input: Given a sequence of five numbers 2, 4, 5, 6, 8.
Output: 6
Explanation:
In the given sequence of numbers, number 8 is the largest element, followed by number 6 which is the second-largest element. Hence we return number 6 which is the second-largest element in the sequence.
I initially went on to make 2 nested loops and for each iteration , I checked if arr[j]==arr[i] , I increased the count of arr[i] . At the end of inner loop , I compared the ans with this count and updated the ans with this count if this count>ans.
However , I then optimised this using a hashmap. I stored the frequencies & then traversed the map & checked , if current frequency is greater than largest stored frequency , then this can be the largest frequency element , & earlier stored frequency can be the second largest frequency. So make this as maxFreq & take the earlier stored maxFreq & make it as secondMax , if any other frequency occurs where that freqsecondMax , then , this freq can be the second Max freq element. Thus , I solved it in O(N) time.
It was a 30 min HR based interview which comprised of some basic HR questions.
Explain an event where you worked in a team & faced challenges & how you tackled it ?
Tip 1: Make sure to be real with the scenario you're reciting.
Tip 2: Even if you're making up a story , make sure it feels real & not some fairytale.
Tip 3: Do not tell that you did not face any challenge as it might not be the case the interviewer is looking for. They're looking for people who have faced challenges & know how to fix them.
Are you okay with the Service Agreement ( Bond ) ?
Tip 1: Sound professional & make sure that you understand the company's requirement to do it
Tip 2: Convince them that its not your forte to leave the company
Tip 3: Sound real that although if you take it as a bond , it does not seem to be good to you but you understand the investment that company puts into you & find this service agreement justifying.

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?