Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Amazon Team. If you also belong to the team, you can get access from here

Amazon Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Amazon Executive Interview Questions and Answers

Updated 10 May 2024

Amazon Executive Interview Experiences

5 interviews found

Executive Interview Questions & Answers

user image Anonymous

posted on 10 May 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. What is my background

Executive Interview Questions & Answers

user image Anonymous

posted on 4 Aug 2022

I applied via Company Website and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. My name Banda Mahesh sir My Qualifications Degree (B.Sc).. computer science
  • Q2. I come from Gudikal (V), Yemmiganur (M), Kurnool (Dist). A.P Pincode -518360
  • Q3. My family background My family members 4 My father name Santha Murthy My mother name Jaya Lakshmi I have one sister She got married
  • Q4. Skills: Good communication skills My strength: Hardwork

Interview Preparation Tips

Interview preparation tips for other job seekers - It's very good job and better job
Because of good salary monthly

Executive Interview Questions Asked at Other Companies

Q1. How will you start RS method Development for known drug product?
Q2. What is peak purity and how it is calculated in hplc?
Q3. Procedure of export and import.China as country and as manufactur ... read more
Q4. How to use excell and basics of advance excellent
Q5. 1 - Which biological indicator use in autoclave validation at the ... read more

Executive Interview Questions & Answers

user image Anonymous

posted on 16 Nov 2022

I applied via LinkedIn and was interviewed in May 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. What's your strength
  • Q2. Why can i hire you
Round 3 - HR 

(4 Questions)

  • Q1. Tell me about your self
  • Q2. Why do you working with us
  • Q3. How can you see in the next five years
  • Q4. What's your weakness
Round 4 - HR 

(4 Questions)

  • Q1. You got any information about this company
  • Q2. You have any experience
  • Q3. What your main goals in your life
  • Q4. What's that the last sunday

Interview Preparation Tips

Topics to prepare for Amazon Executive interview:
  • Effective Communication Skills
Interview preparation tips for other job seekers - Maintain good communication skills and remember one thing you will not worry and before you getting the interview round then you can prepare your interview questions cause they helps to increase your confidence

Executive Interview Questions & Answers

user image Anonymous

posted on 27 Jun 2022

I applied via Company Website and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Introduction,about the company

Interview Preparation Tips

Interview preparation tips for other job seekers - as a fresher ill learn new skills form your company

Amazon interview questions for designations

 Operations Executive

 (10)

 Sales Executive

 (10)

 Telecalling Executive

 (7)

 Processing Executive

 (5)

 CSR Executive

 (4)

 Seles Executive

 (4)

 Inbound Executive

 (4)

 BPO Executive

 (4)

Interview Questionnaire 

2 Questions

  • Q1. Tell me something about your self
  • Q2. What kind of this post as a chat executive or calling

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Why did you apply for this job
  • Q2. Why should we choose you

Interview Preparation Tips

Interview preparation tips for other job seekers - Please try to learn the capitals of different states and countries as that might help you

I applied via Recruitment Consultant and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How did you manage CI/CD

Interview Preparation Tips

Interview preparation tips for other job seekers - Its not too difficult to clear

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

This was an online coding round where we were supposed to solve 2 questions under 90 minutes . Both the questions in my set were related to Graphs and were quite tricky and heavy to implement.

  • Q1. 

    Path Counting in Directed Graph

    Given a directed graph with a specified number of vertices V and edges E, your task is to calculate the total number of distinct paths from a given source node S to all ot...

  • Ans. 

    Calculate the total number of distinct paths from a given source node to all other nodes in a directed graph.

    • Use dynamic programming to keep track of the number of paths from the source node to each node in the graph.

    • Consider using modular arithmetic to handle large numbers and prevent overflow.

    • Start by initializing the number of paths from the source node to itself as 1.

    • Iterate through the edges of the graph and updat...

  • Answered by AI
  • Q2. 

    Course Schedule II Problem Statement

    You are provided with a number of courses 'N', some of which have prerequisites. There is a matrix named 'PREREQUISITES' of size 'M' x 2. This matrix indicates that fo...

  • Ans. 

    Given courses with prerequisites, determine a valid order to complete all courses.

    • Use topological sorting to find a valid order of courses.

    • Create a graph with courses as nodes and prerequisites as edges.

    • Start with courses that have no prerequisites and remove them from the graph.

    • Continue this process until all courses are taken or there are no valid courses left.

    • If there is a cycle in the graph, it is impossible to com

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a Data Structures and Algorithms round with some standard questions . I was expected to come up with an
efficient approach and code it as well .

  • Q1. 

    Merge Intervals Problem Statement

    You are provided with 'N' intervals, each containing two integers denoting the start time and end time of the interval.

    Your task is to merge all overlapping intervals a...

  • Ans. 

    Merge overlapping intervals and return sorted list of merged intervals.

    • Sort the intervals based on start times.

    • Iterate through intervals and merge overlapping intervals.

    • Return the merged intervals in sorted order.

  • Answered by AI
  • Q2. 

    Longest Route Problem Statement

    Given a 2-dimensional binary matrix called Mat of size N x M that consists solely of 0s and 1s, find the length of the longest path from a specified source cell to a destina...

  • Ans. 

    Find the length of the longest path from a source cell to a destination cell in a binary matrix.

    • Use depth-first search (DFS) to explore all possible paths from source to destination.

    • Keep track of visited cells to avoid revisiting them.

    • Return the length of the longest path found, or -1 if no path exists.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was also a DSA round where I was asked to code only one of the questions but I eventually ended up coding both
as I had some spare time and explained my approches very smoothly to the interviewer . This round went preety well .

  • Q1. 

    Longest Increasing Subsequence Problem Statement

    Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...

  • Ans. 

    Find the length of the longest strictly increasing subsequence in an array of integers.

    • Use dynamic programming to solve this problem efficiently.

    • Initialize an array to store the length of the longest increasing subsequence ending at each index.

    • Iterate through the array and update the length of the longest increasing subsequence for each element.

    • Return the maximum value in the array as the result.

  • Answered by AI
  • Q2. 

    Search In Rotated Sorted Array Problem Statement

    Given a rotated sorted array ARR of size 'N' and an integer 'K', determine the index at which 'K' is present in the array.

    Note:
    1. If 'K' is not present...
  • Ans. 

    Given a rotated sorted array, find the index of a given integer 'K'.

    • Use binary search to find the pivot point where the array is rotated.

    • Then perform binary search on the appropriate half of the array to find 'K'.

    • Handle cases where 'K' is not present in the array by returning -1.

  • Answered by AI
Round 4 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

This was also a DSA round with 2 questions of Medium to Hard difficulty . I was expected to follow some clean code and OOPS principles to write the code in this round .

  • Q1. 

    Rank from Stream Problem Statement

    Given an array of integers ARR and an integer K, determine the rank of the element ARR[K].

    Explanation:

    The rank of any element in ARR is defined as the number of elem...

  • Ans. 

    Given an array and an index, find the number of elements smaller than the element at that index appearing before it in the array.

    • Iterate through the array up to index K and count the number of elements smaller than ARR[K].

    • Return the count as the rank of ARR[K].

    • Handle edge cases like empty array or invalid index K.

  • Answered by AI
  • Q2. 

    LRU Cache Design Question

    Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    1. get(key) - Return the value of the key if it exists in the cache; otherw...

  • Ans. 

    Design a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraint.

    • Implement a doubly linked list to maintain the order of recently used keys.

    • Use a hashmap to store key-value pairs for quick access.

    • Update the order of keys in the linked list on get and put operations.

    • Evict the least recently used key when the cache reaches its capacity.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAFacebook interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic Questions about core concept.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on core concepts and basic programs.

I applied via Referral and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About personality

Interview Preparation Tips

Interview preparation tips for other job seekers - HR is very knowledgeable. The company want you to be very knowledgeable, smart and interesting.

Amazon Interview FAQs

How many rounds are there in Amazon Executive interview?
Amazon interview process usually has 2 rounds. The most common rounds in the Amazon interview process are HR, Resume Shortlist and One-on-one Round.
How to prepare for Amazon Executive interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Amazon. The most common topics and skills that interviewers at Amazon expect are Customer Service, Non Voice Process, international bpo, international call center and Communication Skills.
What are the top questions asked in Amazon Executive interview?

Some of the top questions asked at the Amazon Executive interview -

  1. I come from Gudikal (V), Yemmiganur (M), Kurnool (Dist). A.P Pincode -518...read more
  2. My name Banda Mahesh sir My Qualifications Degree (B.Sc).. computer scie...read more

Tell us how to improve this page.

Amazon Executive Interview Process

based on 2 interviews

Interview experience

2.5
  
Poor
View more

Interview Questions from Similar Companies

Uber Interview Questions
4.2
 • 149 Interviews
Expedia Group Interview Questions
3.8
 • 75 Interviews
LinkedIn Interview Questions
4.3
 • 65 Interviews
OLX Interview Questions
3.8
 • 57 Interviews
Facebook Interview Questions
4.3
 • 52 Interviews
Groupon Interview Questions
3.1
 • 42 Interviews
Uplers Interview Questions
4.0
 • 41 Interviews
Fareportal Interview Questions
3.3
 • 30 Interviews
Yahoo Interview Questions
4.6
 • 29 Interviews
Airbnb Interview Questions
3.7
 • 23 Interviews
View all
Amazon Executive Salary
based on 116 salaries
₹1.1 L/yr - ₹6.5 L/yr
34% less than the average Executive Salary in India
View more details

Amazon Executive Reviews and Ratings

based on 29 reviews

4.1/5

Rating in categories

4.1

Skill development

4.1

Work-life balance

4.1

Salary

3.6

Job security

4.0

Company culture

3.9

Promotions

4.0

Work satisfaction

Explore 29 Reviews and Ratings
Customer Service Associate
4.2k salaries
unlock blur

₹0.6 L/yr - ₹6.8 L/yr

Transaction Risk Investigator
3.1k salaries
unlock blur

₹2 L/yr - ₹6.1 L/yr

Associate
2.9k salaries
unlock blur

₹0.8 L/yr - ₹7 L/yr

Senior Associate
2.5k salaries
unlock blur

₹2 L/yr - ₹10.5 L/yr

Program Manager
2.4k salaries
unlock blur

₹9 L/yr - ₹37 L/yr

Explore more salaries
Compare Amazon with

Flipkart

3.9
Compare

TCS

3.7
Compare

Google

4.4
Compare

Netflix

4.3
Compare
Did you find this page helpful?
Yes No
write
Share an Interview