Amazon Interview | Set 90 Last Updated : 07 Aug, 2024 Comments Improve Suggest changes Like Article Like Report 1. Phone Interview a. Given sorted array in decreasing order. Find first occurrence of given key. b. Find diameter of a binary tree. 2. Face to face 1 (Programing skill) a. Optimal Strategy For A Game b. Merge N sorted lists to a single sorted list but comparisons should be minimum 3. Face to face 2 (DS round) a. 1 represent A, 2 rep B etc and 26 rep Z. Given a number, find number of possible decoding for this number. No need to consider number starts with zero. Eg: input - 1234, output - 3(ABCD, AWD, LCD) b. How to find a loop in linked list. How to remove this loop. c. How to design LRU cache(looking for the DS's used and their interaction) 4. Face to face 3(Design) a. A device need to upgrade and downgrade its software. Eg: mobile phone need to upgrade its OS. Design high level and low level. (follow-up - 1. form version X to Y is not possible but z can. 2. from current version to latest version not possible but we can upgrade to an intermediate version and then to latest version. What DS will be effective here) b. Design a semaphore. 5. Face to face 4(curtain raiser) a. HR questions including prev projects, best work etc b. Given a linked list where each node contains an extra arbitrary pointer which points to any node in the list. Write code to clone the list. b. Print vertical sum of a binary tree. c. Print a binary tree in vertical zig-zag order. 6. Manager round a. manager round HR questions. Team fit questions etc. b. Given a mathematical expression. How to design this expression evaluator using OOPs concept. Each round consists of 1 to 1.30 Hrs. All Practice Problems for Amazon ! Comment More infoAdvertise with us Next Article Amazon Interview | Set 90 Anonymous Improve Article Tags : Interview Experiences Experiences Amazon Practice Tags : Amazon Similar Reads Amazon Interview | Set 93 I have just completed a full interview with Amazon and wanted to give back to GeeksForGeeks my experience because it has helped me so so much to go through it. 1st phone interview Why Amazon? How do you find out the cause of a slow UI request? Write function to convert a stream of incoming character 1 min read Amazon Interview | Set 13 Round 1 (Telephonic) Q1. For a given number, find the next greatest number which is just greater than previous one and made up of same digits. Q2. Find immediate ancestor of a given Node Q3. Clone the linked list having an extra random pointer in nodes which is pointing random node in the list. Roun 2 min read Amazon Interview | Set 9 (Answers) This post is about answers to the questions asked in Amazon Interview | Set 9. It contains links to some of the solutions available on the geeksforgeeks. I have also written my answers which I replied in the interview. I hope it would help the readers. Online Programming Round: (5 methods, 2 hours) 3 min read Amazon Interview Question Round 1: There is an unsorted array of size n. Given a key k find m nearest elements to k. Example Array :Â Â -10, -50, 20, 17, 80. key k :20 m : 2 Answer 17, -10. Solution : Find k closest numbers in an unsorted array 1 min read Amazon Interview | Set 63 (For SDE-1) I have a total experience of two years. I am sharing my interview experience with Amazon. This is for SDE1 Amazon. A very big thanks to whole team of geeks for geeks. It is because of them only that I was able to make Amazon and get a job in my dream company. Otherwise it was impossible for me. The 1 min read Like