Tip 1 : Practice well.
Tip 2 : The questions asked are easy to medium, just have good grip over the concepts.
Tip 3 : Software Engineering experience is a plus.
Tip 1 : Carefully curate the experiences that best capture your skills and problem-solving abilities.
Tip 2 : Employers spend an average of six seconds per resume (at least at first glance!). Take the time to scan your document with fresh eyes and to make sure everything on the page is relevant for the specific job for which you’re applying.
There were 3 coding questions and the questions were easy to medium level.



ARR = [0, 1, 1, 0, 0, 1, 1, 1], here you can see the maximum length of consecutive 1’s is 3. Hence the answer is 3.







A subsequence of an array/list is obtained by deleting some number of elements (can be zero) from the array/list, leaving the remaining elements in their original order.
Two coding questions and discussion over my projects in my current company



You are given ‘ARR’ = {1, 2, 2, 3, 3} and ‘K’ = 2.
The answer will {2, 3} as 2 and 3 are the elements occurring most times.



For the given array 'ARR' = [7, 12, 1, 20]
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, the output is [12, 20, 20, -1].
1 basic coding question and concepts of Java were discussed in detail.



Can you solve each query in O(logN) ?
Tip 1 : If need to touch on the concepts of Java spring, go through resources on internet
Tip 2 : Just keep the conversation light and keep discussing the solutions.
Tip 3 : Ask for help if you get stuck somewhere.
A little discussion about my current project and my introduction and then was mostly the interviewer telling me about the projects and all.
Tip 1 : Be honest and open
Tip 2 : Show enthusiasm for the job
Tip 3 : Know how to tell your story

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What can be the possible extension for the HTML5 file?