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

Clear (1)

Amazon Intern Interview Questions, Process, and Tips

Updated 10 Jan 2025

Top Amazon Intern Interview Questions and Answers

  • Q1. Given a sorted array of integers, find the frequency of 2 in the array in log(n) time.
  • Q2. Given an array of numbers, for each index of the array, find the maximum frequency integer to the right of the array.
  • Q3. To reverse Linked List in pair of three.
View all 8 questions

Amazon Intern Interview Experiences

21 interviews found

Intern Interview Questions & Answers

user image Shanshan Du

posted on 11 Feb 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Just have one round, asked some normal BQ question, the coding question is leetcode 22

Intern Interview Questions & Answers

user image Anonymous

posted on 19 Oct 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Coding Test 

We had a coding test for interview shortlist which had 2 easy questions

Round 3 - Technical 

(1 Question)

  • Q1. 2 DSA questions on 2 pointers and tree traversal and project briefing

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. Case. There is a housing society “The wasteful society”, you coll ... read more
Q2. Which programming language you are comfortable with?
asked in Deloitte
Q3. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q4. Huffman Coding Challenge Given an array ARR of integers containin ... read more
asked in Accenture
Q5. A marketing strategy case. Client is a perfume seller in Jaipur. ... read more

Intern Interview Questions & Answers

user image Anonymous

posted on 1 Mar 2023

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

2 coding questions were there in the coding test. Duration was I think 90 mins.

Round 2 - Technical 

(2 Questions)

  • Q1. Technical round had multiple parts. First they discussed various projects from my resume. Then it was coding Qn. ANd finally LPs.
  • Q2. For coding qn, they asked me to do level order traversal.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and do lots of coding practice. You need to understand and relate to Amazon LPs as well with your work-ex.

Intern Interview Questions & Answers

user image Anonymous

posted on 10 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Burn a tree Level order traversal

Round 2 - Technical 

(1 Question)

  • Q1. Testing related questions

Amazon interview questions for designations

 Summer Intern

 (1)

 SDE Intern

 (15)

 HR Intern

 (4)

 Student Intern

 (3)

 Operations Intern

 (2)

 Sdet Intern

 (1)

 Management Intern

 (1)

 QA Intern

 (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 2 Jul 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Coding Test 

Reverse a linked list using data structure and analysis

Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself, experience
  • Q2. Explain your resume in detail and prior work experience
  • Q3. What are your interest

Interview Preparation Tips

Interview preparation tips for other job seekers - practice leetcode problems

Get interview-ready with Top Amazon Interview Questions

Intern Interview Questions & Answers

user image Anonymous

posted on 13 May 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Leetcode medium problem
  • Q2. Gfg easy problem
  • Ans. 

    The question is about solving an easy problem on GeeksforGeeks.

    • Read the problem statement carefully to understand the requirements.

    • Break down the problem into smaller subproblems if needed.

    • Implement the solution using the appropriate data structures and algorithms.

    • Test the solution with sample inputs to ensure correctness.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare leetcode and dsa

Intern Jobs at Amazon

View all

Intern Interview Questions & Answers

user image Anonymous

posted on 12 Aug 2022

I applied via Campus Placement and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Easy and of 90min basic dsa will help u clearing

Round 2 - HR 

(1 Question)

  • Q1. Describe yourself in 3 words project discussion amazon values

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and positive . Believe in yourself and never self doubt.

Intern Interview Questions & Answers

user image Anonymous

posted on 7 Apr 2022

I applied via Campus Placement and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Coding Test 

There were many sections.
There was a debugging section where basic code debugging was asked in MCQ.
In coding section,a total of two questions were asked. First question was basic string based with easy difficulty level.
Next one was of sliding window with little variation , medium difficulty.
Lastly was a section with hr type of questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. A question based on topological sort was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Pay attention at DSA thoroughly with emphasis on dp and graph,they may ignore your projects if you have strong DSA coding skills.

Intern Interview Questions & Answers

user image Anonymous

posted on 8 Apr 2021

I applied via Campus Placement and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Given a sorted array of integers, find the frequency of 2 in the array in log(n) time.
  • Ans. 

    Find frequency of 2 in sorted array of integers in log(n) time.

    • Use binary search to find first and last occurrence of 2 in array.

    • Calculate frequency by subtracting last index from first index and adding 1.

    • Time complexity is O(log(n)).

  • Answered by AI
  • Q2. Given an array of numbers, for each index of the array, find the maximum frequency integer to the right of the array.
  • Ans. 

    Find the maximum frequency integer to the right of each index in an array of numbers.

    • Create a frequency map of the array.

    • Iterate through the array and for each index, find the maximum frequency integer to the right using the frequency map.

    • If there are no integers to the right, return -1.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Get ready for facing data structures problems.
2. Some interviewers ask for the projects but without data structures, there is no way to pass the interview.
3. Have a decent understanding of the programming language you code in.

Skills evaluated in this interview

Intern Interview Questions & Answers

user image Anonymous

posted on 9 May 2017

I was interviewed in Aug 2016.

Interview Questionnaire 

3 Questions

  • Q1. To reverse Linked List in pair of three.
  • Ans. 

    Reverse a linked list in pairs of three.

    • Create a function that takes the head of the linked list as input.

    • Traverse the linked list in pairs of three and reverse each pair.

    • Update the head of the linked list to the new head after reversing each pair.

    • Return the new head of the linked list.

  • Answered by AI
  • Q2. Search a number in sorted rotated array.
  • Ans. 

    Search a number in sorted rotated array.

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

    • Determine which half of the array the target number may be in

    • Perform binary search on the appropriate half of the array to find the target number

  • Answered by AI
  • Q3. A dynamic programming question was there to find a path in matrix.

Interview Preparation Tips

Round: Technical Interview
Experience: Interviewer mainly focused on problem solving skill.

Skills: Algorithm
College Name: KIIT University

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Amazon Interview FAQs

How many rounds are there in Amazon Intern interview?
Amazon interview process usually has 1-2 rounds. The most common rounds in the Amazon interview process are Coding Test, Technical and One-on-one Round.
How to prepare for Amazon Intern 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, international voice, customer support, bpo and voice process.
What are the top questions asked in Amazon Intern interview?

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

  1. Given a sorted array of integers, find the frequency of 2 in the array in log(n...read more
  2. Given an array of numbers, for each index of the array, find the maximum freque...read more
  3. To reverse Linked List in pair of thr...read more
How long is the Amazon Intern interview process?

The duration of Amazon Intern interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

LIST OF COMPANIES

Verse Innovation

Overview

SALARIES

Incisive Infotech

SALARIES

Amypo Technologies

INTERVIEWS

HCL Group

No Interviews

SALARIES

Ptc Industries

INTERVIEWS

Expedia Group

No Interviews

SALARIES

Collegedunia

JOBS

Verse Innovation

No Jobs

INTERVIEWS

IBM

No Interviews

JOBS

Qualcomm

No Jobs

Tell us how to improve this page.

Amazon Intern Interview Process

based on 19 interviews

3 Interview rounds

  • Coding Test Round - 1
  • Coding Test Round - 2
  • Technical Round
View more

Intern Interview Questions from Similar Companies

Myntra Intern Interview Questions
4.0
 • 2 Interviews
Paytm Intern Interview Questions
3.3
 • 1 Interview
View all
Amazon Intern Salary
based on 15 salaries
₹1 L/yr - ₹10 L/yr
52% more than the average Intern Salary in India
View more details

Amazon Intern Reviews and Ratings

based on 50 reviews

4.1/5

Rating in categories

3.9

Skill development

3.8

Work-life balance

4.1

Salary

3.8

Job security

3.9

Company culture

3.8

Promotions

3.9

Work satisfaction

Explore 50 Reviews and Ratings
QAE , ICCS - International Cobranded Credit Cards

Bangalore / Bengaluru

1-5 Yrs

Not Disclosed

Tax Analyst, International ITX compliance, APAC ITX Compliance

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

HR Partner , Amazon International Stores

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

Explore more jobs
Customer Service Associate
4.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Transaction Risk Investigator
3.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
2.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
2.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Program Manager
2.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Amazon with

Flipkart

4.0
Compare

TCS

3.7
Compare

Google

4.4
Compare

Netflix

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