Tip 1 : Be confident
Tip 2 : Be clear
Tip 3 : Practice Atleast 350 Questions
Tip 1 : Clear and well aligned resume
Tip 2 : do not put false things
This round consists of 2 coding questions in 60 mins on the platform of HackerEarth.
The first one is based on Array which can be easily solved by using two for loop
The second one is based on String



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



Input: 'str' = "abca"
Output: 1
Explanation:
If we insert the character ‘b’ after ‘c’, we get the string "abcba", which is a palindromic string. Please note that there are also other ways possible.
The interview started with a brief introduction including projects and trainings.
Projects in-depth explanation. As I used JDBC for the connectivity of the code to the database, so they asked questions on JDBC also.
SQL queries.
Polymorphism with their examples (Runtime polymorphism-Method Overriding, Compile-time polymorphism – Method Overloading).



There is only one space between the values of each column in a row.
For example, Pattern for ‘N’ = 5 will be.
1 2 3 4 5
11 12 13 14 15
21 22 23 24 25
16 17 18 19 20
6 7 8 9 10



The given array is sorted in non-decreasing order.



Consider ARR = [1, 2, 3, 4, 4], the duplicate integer value present in the array is 4. Hence, the answer is 4 in this case.
A duplicate number is always present in the given array.
It was just a discussion round in which simple introduction, bond-related queries, offer letter discussion, and joining related queries.
Why do you want to work for our company?
Tip 1 : Talk about the past projects that you had worked on that matches the requirements of the current role.
Tip 2 : Talk about your career aspirations that are associated with this job role.
Tip 3 : Have the knowledge in hand about the company’s vision, mission, and the work it has done in recent years that inspired you to join the organization.
What are your greatest strengths and weaknesses?
Tip 1 : Start by stating the strongest skills and qualities that can be of a great match to the job role.
Tip 2 : Do not tell any weakness that can potentially jeopardize your candidature.
Tip 3 : Do not tell cheesy, cliché answers like “I am a perfectionist which is both my strength and my weakness”.
Tell me about the gap in your resume.
After the completion of my bachelor’s degree, I started working continuously for 8 years without taking any break. This sort of impacted my productivity and also harmed my work-life balance. Hence, I decided to take a break of 6 months to clear my mind, make amends with my family, and also do solo travel to different places.

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