Tip 1: Complete all easy and medium questions from Love Babbar's 450 set of questions, at least from the Blind 75.
Tip 2: Focus on OOP concepts, including classes and the super keyword.
Tip 3: Be prepared to discuss your projects and past work experiences in detail.
Tip 1: Brush up on the basics: OOP concepts and easy coding problems.
Tip 2: Be well-prepared to discuss everything you have written on your resume.
-Find the second largest element in an array.
-Answer a few OOP-based questions, including the implementation of a class and some class and instance methods.



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.
use two variables.
managerial round
Tip 1: Prepare what you have written
Tip 2: General behavioural questions
HR round
General HR based questions, salary negotiation
Tip 1: Ask 50% hike, I was given 100%

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