Tip 1 : Require coding skills to pass the interview.
Tip 2 : Brush up on Java Skills
Tip 3 : Brush up on OOPS
Tip 1 : Keep it to one page
Tip 2 : Mention relevant skills as per the job
Test Comprises of 3 coding questions and some MCQs
CS fundamentals
Number Of MCQs - 7
Using OOPS concepts
2 coding questions of (1 easy and 1 medium level) on hackerrank code-pair with the Interviewer
Write a function that accepts a List of employee hours, a budget, and salary. The function should return true if the payment needed to go out to the employees is under budget, and false if it is above budget. Assume that the salary is the same for all employees, and remember if an employee has worked over 40 hours, each hour over 40 is 1.5x pay.
Tip 1 : Clear with your basics of language in which you code.
Tip 2 : Practice enough to build logic at the time of the interview.
Tip 3 : Practice CS fundamentals and OOPS Concepts
This Round was based on CS fundamentals and One coding question was there as a Code-pair.



Input: 'a' = [7, 12, 1, 20]
Output: NGE = [12, 20, 20, -1]
Explanation: For the given array,
- The next greater element for 7 is 12.
- The next greater element for 12 is 20.
- The next greater element for 1 is 20.
- There is no greater element for 20 on the right side. So we consider NGE as -1.
Used stack for the same

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