Amazon interview Experience | Set 133 Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report Recently had a interview with Amazon, through employee referral. All face to face rounds. I didn't clear, so no offer. 1st Technical Round: Given an integer, find the next biggest integer whose digits are in increasing order. Example: Input: 118 Output: 123 Input: 127 Output: 234 Input: 987 Output: 1234 Designing question: Design a parking space to park a car. 2nd Manager Round: Explain my current project. Architecture and design flows etc. asked. Any challenges while working on the project. Any glitches/cases where you completed got it wrong etc. After two rounds asked to leave. I guess I didn't answer as per standards. Thanks anyways GeeksForGeeks. All Practice Problems for Amazon ! Comment More infoAdvertise with us Next Article Amazon Interview experience | Set 335 Anonymous Improve Article Tags : Interview Experiences Experiences Amazon Practice Tags : Amazon Similar Reads Amazon Interview experience | Set 335 First Round : 10 Mins - Introduction of the team , myself , Behavioral questions . Next 45 mins - write a findMatch method for online game where two players are set to play game. If player X comes online then he needs to be matched with player whose existing rank is closest possible to that of Playe 1 min read Amazon Interview Experience | Set 315 Interviewed for Mumbai location. Round 1 (Written round - 45 min) 1. Count the number of occurrences in a sorted array 2. In given range, print all numbers having unique digits. e.g. In range 1 to 20 should print all numbers except 11. 3. Given a node, you can even find the next highest node in O(lo 2 min read Amazon Interview experience | Set 325 1st Round(Hackerrank) Given an array, find largest sum of 1) Contiguous subarray 2) Non Contiguous Subarray Largest region of cells problem 2nd Round(Written test) Add two numbers represented by linked list Get a number, find next greater element with same digits Given a sorted array find if a[i]+a[ 1 min read Amazon Interview Experience | Set 170 Round 1 - Telephonic 1. Find element in an array which have elements in first increasing and then decreasing order. (code) 2. Find if two nodes in a tree are cousins or not. (code) Round 2 1. Find sum of all numbers that are formed from root to leaf path (code) expected time complexity O(n) 2. Zig-Z 2 min read Amazon Interview Experience | Set 202 I had an interview with Amazon recently below are the questions asked. Qualification round 1) Rotate/Shift the elements of a square array clockwise by one at a time. (Not by 90 degrees, but by one element. Think of concentric circles) Example: 1 2 3 4 Output: 3 1 4 2 2) Write a function that determi 2 min read Amazon Interview Experience SDE 2 The whole process took 1 month. Started with a hiring drive. First there was a coding round. Question:Â First non repeating character using one traversal of string Candidates who cleared it were called for F2F rounds. Round 1: Given set of coins [10, 5, 2, 1], how do you generate change value x from 1 min read Like