Tip 1 : Solve as much questions as you can from online platforms
Tip 2 : Host some of your work online on a website and put all the links on your resume
Tip 3 : Try having a personal portfolio website
Tip 1 : Make your resume Black and white and not more than one page
Tip 2 : Highlight all the links in your resume for your project work and achievements
It was a MCQ round with 30 MCQ's and 1coding question that had to be solved in 60 minutes



Let ‘N’ = 4, ‘Arr’ be [1, 2, 5, 4] and ‘K’ = 3.
then the elements of this array in ascending order is [1, 2, 4, 5]. Clearly, the 3rd smallest and largest element of this array is 4 and 2 respectively.
Sorted the array and printed the first and the last element for the greatest and the shortest element

If the given string is:
abcadeecfb
Then after deleting all duplicate occurrences, the string looks like this:
abcdef
Check every word in the string and keep storing them anywhere. And for further word check if that word is already stored or not.
In this round the interviewer asked questions related to my resume and also asked one coding question



‘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.
I first reversed the string and checked if both the strings are equal
Tip 1 : Mention only those skills on the resume, that you are confident of
Tip 2 : You should be able to explain your project in a effective way
This was just a confirmation that I was selected
Tip 1 : Be yourself and don't fake anything
Tip 2 : Try and answer all the answers calmly

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