Tip 1 : Practice atleast 30 questions of each topic of DSA
Tip 2 : Do practice OOPS thoroughly for the interview part. For the coding round practice arrays, strings, linked list and trees as much as you can.
Tip 3 : Make a blue print of Operating system note while preparing it and just revise it before your interview and coding round.
Tip 1 : You must include only those things in your resume, in which you will be able to answers almost all questions
Tip 2 : Make atleast two projects and include them in the resume, because many time interviewer put all his time discussing projects only. So if you have a command on your project, then it will be beneficial for you.
The round was conducted on Hackerrank and I was at home(around 10am) giving this round in Online mode.
This round consists of two coding questions and the duration was 75 minutes.
During this round camera and microphone of my laptop is active.



If the input string is "abbc", then all the possible palindromic substrings would be: ["a", "b", "b", c", "bb"] and hence, the output will be 5 since we have 5 substrings in total which form a palindrome.
A string is said to be a 'Palindrome' if it is read the same forwards and backwards.
For example, “abba” is a palindrome, but “abbc” is not.
A 'Substring' is a contiguous sequence of characters within a string.
For example, "a", "b", "c", "ab", "bc", "abc" are substrings of "abc".



A Subsequence of a string is the one which is generated by deleting 0 or more letters from the string and keeping the rest of the letters in the same order.
This was an online face to face technical round conducted on Hirepro platform. There is an editor in this platform itself, so we have to submit and run our code and also we have to explain the code and approach to the interviewer.
The interview starts with the introduction, then he asks questions on my project. I have developed my project in Python language (Django Framework)
This was an online face to face HR round conducted on Hirepro platform.
HR first introduce me about the company and company's goals and then she start asking HR questions to me.
Introduce yourself?
Why Amazon?
Where do you see yourself in 5 years?
Tip 1 : For these type of questions never tell the like I have my dream company and I wants to go over there. They will reject you in a second.
Tip 2 : Answers these ques like in upcoming years, I see myself as a knowledgeable professional in my company and will like to attain maximum growth.
Mention skill and weaknesses
Tip 1 : Answer this question like: I have a good problem-solving skill, which I consider as my biggest strength. And I am a curious person to learn the new technologies and doing work on challenging projects
Tip 2 : My strengths include an ability to work effectively as a part of team.
I am committed and focused towards the task I have been given.

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?