Amazon Interview Experience | Set 406 (Off-Campus Internship)

Round 1:
The first round consists 20 mcqs and 2 coding questions. The MCQ’s are focused mainly on Operating systems, data structures and algorithm analysis and DBMS.

each question consists +1 and -0.25 for the wrong answer 

Round 2:(TECHNICAL ROUND 1)
It started with the self introduction and brief chat about Vizag(interview held in Vizag). He is so friendly and encouraging

  1. Rearrange nodes in the given linked list as follows
        input : a -> b -> c -> d -> e
        output: a -> e -> b -> d -> c

    Solution: Rearrange a given linked list in-place.

  2. Given an array of integers, print pairs(positive value and negative value of the number)  that exists in the array.
        
    Input : [1, -3, 2, 3, 6, -1]
    Output : [-1,1] 
             [-3,3]
    

    Solution: zambiatek Link

this round happened for one hour

Round 3 (TECHNICAL ROUND 2):
This round started with discussion on projects and then questions on technical concepts like

  1. deadlocks
  2. mutex vs semaphores
  3. ultithreading  vs multiprocessing
  4. TCP protocol
  5. DNS
  6. 3-way handshake in TCP
  7. discussion on OSI layer
  8. ACID properties
  9. models in DBMS(ER, network….)
  10. discussion on ER model

Then he started coding part :

  1. Given row wise and column wise 2d matrix, find k minimum element.
  2. Given an array and a window size and window moves from left to right till the rightmost side of window hits the other side of array, print max element in the window for each step in the process.
    Solution: zambiatek Link

If you like zambiatek and would like to contribute, you can also write an article using write.zambiatek.com or mail your article to review-team@zambiatek.com. See your article appearing on the zambiatek main page and help other Geeks.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Feeling lost in the world of random DSA topics, wasting time without progress? It’s time for a change! Join our DSA course, where we’ll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 zambiatek!

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button