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.
To be given within an hour.
It was on the AMCAT platform.
Total 50 MCQs + 1 coding ques
30(Aptitude-Quantitative/English/Logical), 20(Psychological/Behavioral), 1(Coding Questions).



Merge Sort Algorithm -
Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

The above illustrates shows how merge sort works.
It is compulsory to use the ‘Merge Sort’ algorithm.
It was a technical interview round, where I was required to answer some technical questions along with solving some problems.



F(n) = F(n-1) + F(n-2),
Where, F(1) = F(2) = 1.
For ‘N’ = 5, the output will be 5.
I used for loop to solve this.
This was a management round. Where I was asked some basic questions about myself and other company or behavior-related questions.
1. What is your strength. 2. How do you deal with work pressure. 3. What do you know about our company.
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?