Open In App

Amazon Interview Experience for Programmer Analyst

Last Updated : 04 Oct, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Round 1(OA Assessment – 2 hrs):

  • It was conducted in HackerEarth.
  • 3 Programming Questions were asked

Round 2(Technical Interview – 1 HR)

  • Self Intro
  • Directly stepped into coding and 2 coding questions were asked.
  • Next Greater Element with little tweak in the question (Instead of finding the next greater element we need to find the index of the next greater element If no greater element present then -1)
    • Eg: arr = [72,73,74,70,69,70,75,76,73,72]
    • O/p:        [1,  1,  4,  3,  1,  1,  1,  -1, -1, -1]
  • Two Sum Problem we need to find whether the Sum present in array or not.If present return True as well as the index of the sum else False.
    • Eg: arr = [1,2,3,4,5], Sum = 8 O/P: True [2,4]
  • What is the Challenging task that you made in your academics or in your project.
  • Any Questions to the interviewer

Round 3(Technical Interview – 1 hr):

  • Self Intro
  • Asked me to explain the project in depth.
  • Explained about the role of Programmer Analyst.
  • 2 coding questions were asked.
  • Check Whether the tree is BST or Not

                    Eg – 1                                                    Eg – 2

                          1                                                          5

                        /     \                                                    /     \  

                      2       3                                                 2       8                                                      

                    /   \     /   \                                           /   \     /   \                                                    

                  4     5 6     7                                         1     3 7     9                      

                   O/p: False                                               O/p:True        

  • Nth last node in the linked list.

          Eg – 1: LinkedList = [1,2,3,4,5], n = 3 O/P: 3

          Eg – 2: LinkedList = [1,2,3,4,5], n = 5 O/P: 1

  • How have you dived deep into the project you have done?
  • Any Questions to the interviewer.

Round 4(Technical + Behavioural Interview – 1 hr):

  • Self Intro
  • Explanation of all the projects done.
  • Questions were based on technology used in project and behavioural questions which includes Leadership Principles.
  • Tell me about the time when you to leave the task unfinished
  • Tell me about the time when you faced difficulties in the task
  • How did you collect the data for your machine learning project?
  • Any Questions to the interviewer

Round 5(Final Technical + Behavioural Interview – 1 hr):

  • Directly entered into internship experience.
  • Most of the questions were from the project done in the internship.
  • Tell me about a time where you worked with a customer.
  • Tell me about a time where you didn’t satisfy the customer requirements.
  • Few questions are from accuracy, precision, recall are the major concepts in ML and DL.
  • Given a Coding question to solve.
    • Given two Binary Trees, check if one tree is a mirror of another tree or not.

                     Eg – 1:

                       Root1                                                        Root2

                          1                                                                1

                        /     \                                                           /    \  

                      2       3                                                       3      2                                                      

                    /   \     /   \                                                   /   \    /   \                                                    

                  4     5 6     7                                               7     6 5    4                      O/p: True

                     Eg – 2:

                       Root1                                                        Root2

                          1                                                                1

                        /     \                                                           /    \  

                      2       3                                                       3      2                                                      

                    /   \                                                             /   \    /   \                                                    

                  4     5                                                         7     6 5    4                      O/p: False

  • Asked a few questions about the final year Project.
  • Any Questions to the interviewer

Verdict: Selected



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

Similar Reads