Tip 1 : Work on Competitive Programming skills. That is one thing Amazon looks out for most during hiring. Solve at least 100
questions from every topic.
Tip 2 : You should have at least 2 good projects on your resume. Only write the things that you are completely sure of.
Tip 3 : Work on CS fundamentals as well like -OOPS, OS, and DBMS. There will be MCQ questions from this in the coding round as well as in 1:1 round
Tip 1 : Need at least 2 good projects on the resume. Write a short 2-3 lines summary of the project and the tech stack
used.
Tip 2 : Resume should be 1 page only.
Tip 3 : Your Resume should clearly mention the skillset you have. Companies sometimes filter out Resume based on
skillset only
It was a 1 hr round from 2 pm-3 pm. HR mailed me the link for the Online coding round. After clicking on the link I had to fill out basic details and after that Timer starts.



If the given linked list is 1 -> 2 -> 3 -> 4 -> 5 -> NULL.
Then rearrange it into 1 -> 5 -> 2 -> 4 -> 3 -> NULL.
I did this in O(n). I copied the values in an array and modified it by swapping first and last elements as required by the question. Then i copied back the values ti linked list
It was a 1 hr round from 5 pm-6 pm. HR mailed me the link for joining the zoom call.



The width of each bar is the same and is equal to 1.
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].
Output: 10
Explanation: Refer to the image for better comprehension:

You don't need to print anything. It has already been taken care of. Just implement the given function.
I first found the leftMax array and RightMax Array. LeftMax Array means the max element from left and similarly
RightMax Array means the max element from the right. Then for every index, we just need to find and add the units of water
sum += min(leftMaz[i], rightMax[i]) - arr[i];



1. The grid has 0-based indexing.
2. A rotten orange can affect the adjacent oranges 4 directionally i.e. Up, Down, Left, Right.
It is a very standard question and can easily be solved using bfs and queue
It was also 1 hr round and i was given zoom link to join




If S = “34”, then all the possible letters that can be formed from string S are {“dg”, “dh”, “di”, “eg”, “eh”, “ei”, “fg”, “fh”, “fi”}.
I was not able to solve this question. I was only able to give him brute force approach.

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?