Open In App

Amazon Interview Experience | Set 293 (On-Campus)

Last Updated : 05 Jul, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

Round 1(Online Test) It consisted of two coding questions and 20 MCQs. Round 2(Technical Interview)

  1. Write a function to find ‘a’ raised to the power ‘n’.Then he asked me to find the time complexity of the function.
  2. He was about to ask me the question of ‘finding the number of islands’–  but I told him that I already know the solution so he moved to the next question.
  3. There are n boxes given that are 1-D. You have to find the best fit for the given item that can fit into the box. For ex- An array of boxes is given as {7,9,12} and we need to find the best match for the item of size 10 then the box with dimension 12 will be our best match. I suggested him to use BST. We can arrange all the boxes in a BST and find the successor for the given item in the BST. He then asked me to code it.
  4. He then asked me about my project.

Round 3(Technical Interview)

  1. He asked me a question of joining strings which is similar to the below question – Minimum Cost of ropes I suggested the same approach and coded it.He was satisfied.
  2. There is a audio player given which picks up a random song from the playlist and plays it.The song should not be repeated until all songs are played atleast once.The sequence number of the songs are given in an array.Design such audio player without using any extra space. I suggested him to use a pointer say ‘pivot’ that initially points to the last element of array. The songs to the left of the array are not yet played and the songs to the right are already played and cannot be repeated. Each time a song is picked form left of the pivot and played.That song is then replaced with the pivot element and pivot is moved left by one position. If the pivot points to the first element that means all songs have been played once and the pivot again moves to the rightmost element.

Round 4(HR+Technical) He asked me some HR questions for about half an hour. After that he shifted to the technical part.

  1. What all data structures you know.Give the real life examples of when can we use them.
  2. Write a code for preorder traversal of a binary tree without recursion.

Round 5(Technical Interview)

  1. A boolean matrix question – Boolean Matrix Problem  I already knew the question so she just asked me to code it.
  2. An array of strings is given in which some strings are anagrams of one another. You have to find those strings and store indexes of those strings in a vector. I suggested to sort all the strings and then use a hashmap< String,vector> to solve the above question. She asked me to code it.

And yayy!! I got selected :p


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads