Tip 1: Keep your resume clear and genuine, and avoid unnecessary details.
Tip 2: Python and CSS are essential for the interview.
Tip 3: Complete at least two projects; one should be in Python.
Tip 1: At least one Python project.
Tip 2: Don’t fake anything in your resume.



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".


You don’t need to print anything. Just implement the given function.
Input: n = 6, arr = [5, 7, 8, 1, 6, 3]
Output: [3, 6, 1, 8, 7, 5]
Explanation: After reversing the array, it looks like this [3, 6, 1, 8, 7, 5].
Python-based MCQs: Basic level
General Aptitude: Age-based and Speed-based questions



If more than one such pair of indices exist, return the lexicographically smallest pair
You may not use the same element twice.
Explain dynamic memory allocation in Python.
Explain hooks, what custom components are, and explain the virtual DOM.
They picked questions from my resume, such as what is Kafka and why I used Node.js in a particular project. Every question was based on my resume.

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