Open In App

Amazon Interview Experience for SDE-1

Improve
Improve
Like Article
Like
Save
Share
Report

Date: (14-Sept-2019)
Venue: Global Infocity Park, Perungudi, Chennai
I’d like to share my interview experience @Amazon for SDE-1 with all of my fellow geeks.

Screening Round:
Initially, our resumes were shortlisted by the Amazon Team and we were called for an interview just 2 days before the process. So be prepared at any time.

Round 1 (Online Coding):
There were a total of five questions to solve all the questions time was given 100 mins (later 20 mins were given extra), and the coding platform was www.expanion.com
we were asked to bring our own laptops.

  1. Print the top view of a binary tree
  2. Print the characters which occur more than (or) equal to the value specified sequentially
    Input:
    zazazbgh
    2
    Output:
    zzzaa
  3. Print the maximum prefix
    Input:
    3
    gee, geeks for, geeks for gee
    Output:
    gee
  4. Remove the element which is less than the next element;
    cycle 1: 2<6; so remove 2; result: [4 6 10]
    cycle 2: 4<6; so remove 4; result [6 10]

    Input:
    4 2 6 10
    2
    Output:
    6 10
  5. Asked to print the pattern by user-defined input.
    Input:
    5
    Output:
    *********
    b*******b
    bb*****bb
    bbb***bbb
    bbbb*bbbb

But unfortunately, I was not able to proceed to further rounds. All the best for your success guys!!


Last Updated : 18 Sep, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads