Tip 1 : Don't try to cover everything, go with one or two skills to master it and have some general knowledge about others.
Tip 2 : Do a project along with everything you learn. Practical exposure is what organizations demand.
Tip 3 : Do not ignore soft skills at all. Many underestimate the magic of soft skills in getting selected over others.
Tip 1 : Resume should not be more than 1 or 2 pages. All information should be provided in the form of bullets and numbered in a precise manner and not just in long paragraphs with detailing for every aspect.
Tip 2 : The resume should be easily readable with formal fonts and design, and should not contain false information.
It was a computer-based online test with a webcam connected.
It started at 12 noon.
Total 45 MCQs (Quantitative, Logical, English, Technical)

If the given string is:
abcadeecfb
Then after deleting all duplicate occurrences, the string looks like this:
abcdef
I created a string variable str and initialized an integer count with zero.
With the help of for loop, I performed a comparison between different characters at different indexes.
It was a technical interview round, where I was required to answer some technical questions along with solving some problems.



a) Duplicate elements may be present.
b) If no such element is present return -1.
Input: Given a sequence of five numbers 2, 4, 5, 6, 8.
Output: 6
Explanation:
In the given sequence of numbers, number 8 is the largest element, followed by number 6 which is the second-largest element. Hence we return number 6 which is the second-largest element in the sequence.
I took two elements at different indexes. When the element at the 0th index is greater than the largest, then assign arr[0] to largest and second-largest to largest. Again, the vice-versa is done.
This will be repeated for each iteration and ultimately after comparing or completing iterations up to array length will give you the second largest element.



Try solving this problem in O(N) time complexity.
This was an HR Round. Where I was asked some basic questions about myself and other business or behavior-related questions.
1. Why did you choose this job?
2. How do you deal with pressure?
3. Are you comfortable working different shifts?
Tip 1 : Be confident and true to your every answer.
Tip 2 : Denials of certain things are acceptable enough up to some level.
Tip 3 : Assure yourself to be positive in thinking and be comfortable communicating and not shy.

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