Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Amazon Interview Experience

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Round 1(Coding Round):

  1. Given a binary tree, where every node points to its parent node and the parent of root is null. You have given two nodes to find the distance between them.
  2. Given a matrix of m*n find the maximum path sum from any node. 

     

e.g
 10 20 30 40
20 50 60 100
So, ans is 
10 + 20 + 50 + 60 +100 = 240

e.g
10 30 50
 0 40 30
20 70 80
So, the maximum path sum is
10 -> 30 -> 40 -> 70 -> 80 = 230
  1. Some behavioural questions were asked.

Round 2(Design Round):

  1. Design flight booking system. 

    They are more focusing on LLD in this round. 

    Some cross-questions were asked like how you are handling concurrency for the same ticket etc?

  2. Some behavioral questions were asked.

Round 3(Design Round):

  1. Design Tinder :). 

    They are more focusing on HLD in this round.

  2. Some behavioral questions were asked.
My Personal Notes arrow_drop_up
Last Updated : 01 Jul, 2021
Like Article
Save Article
Similar Reads