Tip 1 : Prepare a good resume and well formatted.
Tip 2 : Prepare your skills to depth. Have full knowledge of the basics.
Tip 3 : Practice basics of DSA
Tip 1 : Should be well formatted
Tip 2 : Highlight all the key skills and put all the work experiences and projects.
It was a Technical interview which lasted more than 1 hour.
Interviewer asked basic questions of OOPS.
Asked me to describe the projects I have worked on in previous companies. And highlight my role in the project.
Interviewer asked me in depth questions of Dotnet and angular.



I had good knowledge of Data Structured and OOPS. So, I was able to solve this question with ease



‘S’ = racecar
The reverse of ‘S’ is: racecar
Since ‘S’ is equal to its reverse. So ‘S’ is a palindrome.
Hence output will be 1.
It was a easy question. To check strings for palindromic I checked the string from end and starting index if they are equal I checked for the next and previous index respectively for both pointers.
It was managerial round. The interviewer gave me a coding problem and asked me to solve it and write the code for it.



Input: 'N' = 3, ‘ARR’ = [1, 2, 3]
Output: 3
It is possible to make all elements of the given array equal by three moves only. There is no possible solution that can perform the task in minimum moves than 3.
[1, 2, 3] => [2, 3, 3] => [3, 4, 3] => [4, 4, 4]
To find the minimum number of moves, we need to remove all elements in range 1 to K that are not equal to a[k]. Hence, we need to keep applying operations until we reach the rightmost term in range 1 to K that is not equal to a[k].
It was an HR round majorly based on compensation discussion.
Tip 1 : Be confident
Tip 2 : Answer to the point
Tip 3 : Be precise

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?