Amazon Interview Experience | Set 393 (On Campus For Internship) Last Updated : 11 Aug, 2024 Comments Improve Suggest changes Like Article Like Report Online Coding Round:- There were 2 coding questions and 20 MCQ's. Given an array find all the triplets having their sum of elements less than a given number k. GeeksforGeeks LinkFind The N-th Magic Number. 1st Interview Round(Face To Face):-The interviewer was very friendly. He went through my CV and asked me if I had any project. To which I replied no and told him that I am currently on a project, and later I gave him a brief explanation of it. For those who didn't do any project don't worry much. He asked me 2 questions Generating All the Possible Subsets(Subset Iteration). GeeksforGeeks LinkSlight Modification of BFS on a grid. I told him my approach, and he was satisfied with that. After I told my approach for the 2nd question he told me to write a Pseudo Code for BFS in a graph.He was the best interviewer I faced till now. The interview lasted for around 45 mins.Other people were given questions like The middle element in a linked list. GeeksforGeeks LinkMerge Sort in a Double Linked List. GeeksforGeeks LinkMerge Two Sorted Arrays. GeeksforGeeks LinkGiven A Binary Tree, For every Leaf Node print sum of the values from the root node to the leaf node. GeeksforGeeks LinkQuick Sort GeeksforGeeks LinkLCA in Binary Tree and Binary Search Tree. LCA in Binary Search TreeLCA in binary tree 2nd Interview Round(Face To Face):- This interviewer was also very friendly. He also had a good knowledge of Coding. He asked me how was my previous round, I replied that it went well. And later he asked me what questions I was asked in the previous round. I told him the questions which I was asked in the previous round, and also I explained their solutions. He asked me 2 questions. Print the Binary Tree in A Spiral Order. GeeksforGeeks Linklli stands for long long int in this question.He gave me a question in the form of a function. And here goes the question. CPP // a1(size1) and a2(size2) are arrays and you // have to append them. lli* Append(lli* a1,lli* a2,lli size1,lli size2) { } Simple But Wrong Solution CPP lli* Append(lli* a1,lli* a2,lli size1,lli size2) { lli a[size1+size2],i; for(i=0;i<size1;i++) { a[i]=a1[i]; } for(i=0;i<size2;i++) { a[i+size1]=a2[i]; } return a; } I told him that the above code actually fails. He asked me why it fails. I answered him this way. The array a is actually in the function Append and once you leave the function the scope of this array ends. He asked me how to do it then. I had no idea. Later he told me that we have to allocate memory for the array using malloc. Later on, he explained to me how it works using heap memory. For my friends, he asked the question in a different way(Merge Two Sorted Arrays).Thanks to GeeksForGeeks For my interview preparation. All Practice Problems for Amazon ! Comment More infoAdvertise with us Next Article Amazon interview experience | Set 383 (On-Campus for Internship) D Desik Improve Article Tags : Misc Interview Experiences Internship Experiences Amazon +1 More Practice Tags : AmazonMisc 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 383 (On-Campus for Internship) Amazon visited our campus for internship and placement. The Selection Process starts with an online test comprises of 20 technical questions involving data structures,operating system basic concepts,algorithms and aptitude questions and two coding questions. First Round Questions Given an array find 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 292 (On-Campus for Internship) Amazon came to our campus for hiring interns.At first there was a coding round then 2 personal interviews Coding round: There was 20 mcq questions based on DS , OS , IQ and output questions And there were 2 coding questions Given a string print the lexographically smallest possible rotation of the s 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 Like