Tip 1 : Practice topic-wise questions from Leetcode. After solving every question, you should see the top Discuss posts and keep on improving.
Tip 2 : Go through the past year's interview experiences which will give you an idea of the kind of questions asked in Amazon.
Tip 3 : Prepare the Computer Science fundamentals well.
Tip 4 : Instead of covering every topic in-depth, try to first cover all the topic at a basic level.
Tip 1 : You should not write false things in your resume.
Tip 2 : Be prepared to answer questions on anything that you have mentioned in the resume. Prepare it well.
There were four rounds in the online assessment.
The first round was a MCQ round where we had to find errors in the given code snippets.
The second round was a coding round where there were two coding questions.
The third round was a MCQ round based on aptitude and mental reasoning.
The fourth round was a behavioural round that consisted of MCQ questions.
The round was based on DSA and CS fundamentals.
Three DSA questions were asked, in each of them I had to properly explain my approach and then code the entire solution.
After the DSA questions, I was asked questions on CS fundamentals.
1. If no such triplets exist, return zero.
2. At least three elements will always be present in the linked list.
If you are given an array {1, 1, 0, 0, 1} then you will have to return the count of maximum one’s you can obtain by flipping anyone chosen sub-array at most once, so here you will clearly choose sub-array from the index 2 to 3 and then flip it's bits. So, the final array comes out to be {1, 1, 1, 1, 1} which contains five ones and so you will return 5.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is 3 + 2 * 4 based on operator precedence?