Amazon Interview Experience | Set 370 (On Campus for Internship) Last Updated : 11 Jul, 2019 Comments Improve Suggest changes Like Article Like Report Round 1: Online Round(90 minutes) There were 20 MCQs and two coding questions. MCQs were mostly logical reasoning, running time and DS/Algo. There were also 2-3 OS, 2-3 DBMS and 1 networking MCQ. 2 coding questions- Magic numbers are defined as either powers of 5, or sum of unique powers of 5. Find nth magic number. Eg: 5,25,30,125,130 etc. Solution: GeeksforGeeks Link Print matrix in diagonal form. Solution: GeeksforGeeks Link Round 2: FTF Interview(Around 1 hr) First the interviewer told me to introduce myself. After that he asked 2 coding questions. Given a binary tree and a node of that tree, find all nodes at a distance d from the given node. Pointer to root node is given. I took a lot of time to solve this question. The interviewer found mistakes and told me, and I corrected them or changed my approach slightly. After almost 45 minutes I was able to write the correct code. Solution: GeeksforGeeks Link Given an array of integers, find the first non-repeating number in the array. I gave him the hashmap based approach and he told me to write code. I did so. After that, he told me to find the answer in a single linear traversal of the array. I discussed a lot of approaches but none of them were satisfactory. I couldn't come up with the correct approach. (Later on when someone asked him the solution, he said that he himself doesn't know, but maybe a very complex solution exists. I'm still not sure on that. Maybe he just wanted to check how much we can think. :p) Solution: GeeksforGeeks Link <Round 3: FTF Interview(Around 30 minutes) The interviewer asked me what subjects I like. I told him ds algo but he didn't want to hear that. So he asked what else and I said DBMS. Then he asked me what is a transaction, how is it different from an sql query, what are its properties. After that he moved on to coding questions. He asked me what data structures or algos I like. I said arrays and graphs. Then he asked these questions. Given a sorted dictionary(array of words) of an alien language, find order of characters in that language. I told him I had seen this question before and told him the approach. He didn't ask me to write the code. How will you find if a cycle exists in a directed graph? I gave him my approach and wrote the code. Solution: GeeksforGeeks Link Find the longest palindromic subsequence in a given string. I tried to solve and told him some approach, even though I knew it was wrong but was hoping for some hint. After just one or two minutes he said let me change the question. Solution: GeeksforGeeks Link Given 3 characters a, b, c, find the number of strings of length n that can be formed from these 3 characters given that; we can use 'a' as many times as we want, 'b' maximum once, and 'c' maximum twice. Solution: GeeksforGeeks Link I told him the dynamic programming approach and he asked me to code it, so I wrote the code. After that he said that's all, do you want to ask any questions. :) Related Practice ProblemsTotal number of Strings Comment More infoAdvertise with us Next Article Amazon Interview Experience | Set 386 (On Campus for Internship) Anonymous Improve Article Tags : Interview Experiences Amazon permutation Practice Tags : Amazonpermutation Similar Reads 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 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 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 | 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 205 (On-Campus for Internship) Cut off: 75%. Around 140 students were short listed. Round 1: 90 minutes It comprised of 20 MCQs on aptitude, operating system, DBMS, data structures and algorithms on Hackerrank. There were two coding questions 1. Given a string find the first non repeating character in it, O(n) was good enough. 2. 2 min read Amazon Interview Experience | Set 207 (On-Campus for Internship) Cut off: 75%. Around 140 students were short listed. Round 1: 90 minutes It comprised of 20 MCQs on aptitude, operating system, DBMS, data structures and algorithms on Hackerrank. There were two coding questions 1. Given a string find the first non repeating character in it, O(n) was good enough. 2. 2 min read Like