Amazon Interview Experience | Set 301(On-Campus for Internship+ FTE) Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report Round 0: (Written): 20 MCQs + 2 Coding Questions: MCQs - Topics: OS - Page fault, Waiting time (RR Scheduling), Paging, Semaphores, etc. DS – Hashing (simple chaining based numerical) Aptitude – 1 Probability question, Puzzle – 1 question, C– 2 questions, etc. Coding Questions: Given a list of n strings group all anagrams together Example: i/p: cat act pat mad dog god o/p: cat act pat mad dog god Given a binary square matrix of size n, find the size of largest region i.e. find a region of connected ones (horizontally, diagonally, vertically).Example: i/p: 0 1 0 0 1 1 1 0 0 0 1 0 1 0 0 0 o/p: 5 DAY 2: (Interview Rounds) Round 1 (Technical Interview - 1 hr. approx.) The Interview started with the interviewer telling me that we don’t have much time so he will ask few questions on data structures and algorithms and I will need to tell him the approach. Reverse a linked list. I gave two approaches, one using stack and one using pointers (in-place). Print top view of a binary tree. Well simple question but don’t know why I started using DFS approach (Pre-Order Traversal) Tried using pre-order but he gave me test cases where it failed. Tried different approaches within pre-order found issues with one or the other test cases and I was also using HashMap to keep track of nodes to print. So he asked me to do it without auxiliary storage. I tried level order approach (w/o auxiliary HashMap)and it worked fine for all test cases. He was satisfied with the approach, so asked me to write production level code. Round 2 (Technical Interview - 45mins. approx.) The interviewer introduced himself briefly and asked me to introduce myself. No follow up questions from the introduction (although I was hoping something on projects or company :P). Find Kth Max occurring element in the Array. Used HashMap and Heap to solve the question. Time O(n*logn) DP question: Special Keyboard Round 3 (Technical Interview - 45 mins. approx.) The interviewer introduced himself briefly and asked me to introduce myself. No follow up questions from the introduction again. He gave me a string based question and asked me if I knew it already (which I didn’t), so he asked me to come up with an approach. Given a string find a repeating substring of maximum length. Example: i/p 1: banana o/p 1: ana i/p 2: indiaindianttindiaindia o/p 2:india india I thought of using KMP but complexity was high with this approach. I tried using Longest Common Substring to see if there is any pattern or way to solve it using LCS, I found an approach told it to the interviewer he was very happy with the approach. Round 4 (Technical Interview - 25mins. approx.) Short round as it was my last round. Only one question: Given an infinite integer number line, find minimum steps required to reach a particular point. 0 is the starting point and at ith step we can move +i or -i steps from current position. Tried using tree and realised it is DP problem told him the approach and complexity and why DP and why BFS (to get minimum steps).He was satisfied with the approach. ALL THE BEST :):) Thanks GeeksforGeeks for all the material, it helped me a lot during preparations. Keep it up !! All Practice Problems for Amazon ! Comment More infoAdvertise with us Next Article Amazon Interview Experience | Set 363 (On-Campus for Internship) Anonymous Improve Article Tags : Interview Experiences Internship Experiences Amazon Practice Tags : Amazon Similar Reads Amazon Interview Experience | Set 363 (On-Campus for Internship) Round 1:online Test(90 min) 20 MCQs -15 Technical(DS,OS,NETWORK,PCD) -5 Aptitude 2 Coding Questions Finding duplicates in the given array,change that to 1,move all the 1's to the right side and the other elements are moved to right Pair sum count(to find the number of pairs present in the given arra 1 min read Amazon Interview Experience | Set 386 (On Campus for Internship) The first round was an online round. There were 2 coding questions and 20 MCQs. The MCQs consisted of both aptitude questions as well as technical questions. The students who did both the coding questions and half of the MCQs were chosen for the interview round. 25 students out of 200 students who g 2 min read Amazon Interview Experience | Set 277 (On-Campus for Internship) Recently Amazon visited our campus for interns and placements. For interns it consisted of 1 online + 2 technical rounds. Online:(90 mins) 20 MCQ'S based mainly on sorting, OS,Networks 2 coding questions: 1. Given a number find the next greatest number formed with same digits 2. Find the largest inc 1 min read Amazon Interview Experience | Set 279 (On-Campus for Internship) Recently Amazon visited our campus. There were total three rounds. First round was an online coding round conducted on Hackerrank, It consisted of 20 Mcqs based on Data Structures,Sorting Techniques,Operating systems,Networking and some aptitude questions along with 2 coding questions, The questions 2 min read Amazon Interview Experience for SDE Internship (On-Campus) 2022 The Amazon hiring process consisted of 3 rounds :Online assessment RoundTechnical Interview Round 1Technical Interview Round 2Online Assessment Round: The assessment consisted of four components:A Code Debugging Section (20 minutes): This round was comprised of 7 debugging questions that required so 5 min read Amazon Interview Experience (On-Campus for Internship 2019) Amazon visited our campus for internship and full time. I took part in the internship drive and I am sharing my experience here.Round 1 (Online) :Everyone who satisfied the required cgpa (probably 7) criteria was allowed to sit for this round . It was mixture of aptitude and coding questions . The m 3 min read Like