Tip 1: You know what your role is, so it's important to have basic knowledge and concepts cleared.
Tip 2: Linux is the base and foundation for the role, so practice basic commands in different Linux flavors.
Tip 3: Be honest.
Tip 1: Have at least two good projects explained briefly with all important points covered.
Tip 2: Every skill must be mentioned.
Tip 3: Focus more on skills, projects, and experiences.
I was given 70 minutes to solve two good level coding problems. I completed in 40 minutes and submitted the test.



The array may contain duplicate elements.
The array can also contain negative integers.
The size of the array is at least 2.
There exists at least one such subarray of size k.



Technical interview round with questions mainly based on DSA and some questions on past experiences as well. Two coding questions were also asked.



1)The amount of petrol that is available at this particular petrol pump.
2)The distance to reach the next petrol pump.



1. You can return the list of values in any order. For example, if a valid triplet is {1, 2, -3}, then {2, -3, 1}, {-3, 2, 1} etc is also valid triplet. Also, the ordering of different triplets can be random i.e if there are more than one valid triplets, you can return them in any order.
2. The elements in the array need not be distinct.
3. If no such triplet is present in the array, then return an empty list, and the output printed for such a test case will be "-1".
Tell me about your past work experiences.
Tell me about your projects.

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