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 Software Development Engineer Intern Interview Questions and Answers

Updated 14 Jan 2025

Amazon Software Development Engineer Intern Interview Experiences

25 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

LeetCode questions - one medium and one hard.

Round 2 - Technical 

(3 Questions)

  • Q1. Dont remember exactly, but was related to trees - leetcode medium
  • Q2. Given an array, what is the sum of the products of all subsequences?
  • Ans. 

    The sum of the products of all subsequences in an array of strings.

    • Calculate the product of all elements in the array

    • Calculate the product of all possible subsequences

    • Sum up all the products of subsequences

  • Answered by AI
  • Q3. Graph - hard, SCC + bfs, freinds and choclates problem
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Linked list based coding question and BST

Round 2 - Technical 

(2 Questions)

  • Q1. About BFS and DFS
  • Q2. Linked list coding question (using bfs)
  • Ans. 

    Implementing a linked list using BFS to traverse and manipulate nodes efficiently.

    • BFS (Breadth-First Search) explores nodes level by level, useful for linked lists with multiple branches.

    • Use a queue to keep track of nodes to visit next, ensuring all nodes at the current level are processed before moving deeper.

    • Example: For a linked list with nodes 1 -> 2 -> 3, BFS would visit 1, then 2, then 3 in that order.

    • BFS c...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA PREP IS MUST

Software Development Engineer Intern Interview Questions Asked at Other Companies

asked in Amazon
Q1. Say you're dealing with really long integers. They're too long to ... read more
asked in Amazon
Q2. Given a singly-linked, non-circular linked list, swap the kth nod ... read more
Q3. What is the angle between the minute and hour hand at 1:15?
asked in Amazon
Q4. Given two linked lists representing two long numbers, add the num ... read more
asked in Amazon
Q5. Given a Binary Search Tree, print the kth last node in inorder tr ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Possible Parenthesis
  • Ans. 

    The question is asking for the possible combinations of valid parentheses.

    • Use backtracking to generate all possible combinations of parentheses.

    • Keep track of the number of open and close parentheses to ensure they are balanced.

    • Exclude invalid combinations where close parentheses appear before open parentheses.

  • Answered by AI
  • Q2. Course Schedule
Round 2 - HR 

(2 Questions)

  • Q1. How are you doing
  • Q2. Tell me about yourself
  • Ans. 

    I am a passionate software engineering student with experience in web development and a strong desire to learn and grow.

    • Currently pursuing a degree in Computer Science

    • Proficient in languages such as Java, Python, and JavaScript

    • Experience with web development technologies like HTML, CSS, and React

    • Completed internships at tech companies like XYZ Corp

  • Answered by AI

Skills evaluated in this interview

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

VSCODE , one question asked

Round 2 - HR 

(2 Questions)

  • Q1. Why do you want to join amazon?
  • Ans. 

    I want to join Amazon because of its innovative culture, vast opportunities for growth, and impact on global e-commerce.

    • Innovative culture: Amazon is known for its cutting-edge technology and constant drive for innovation.

    • Opportunities for growth: Amazon offers a wide range of projects and roles for personal and professional development.

    • Impact on global e-commerce: Amazon's reach and influence in the e-commerce industr...

  • Answered by AI
  • Q2. Where do you see yourself after 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Leading a team of developers on innovative projects

    • Advancing to a senior software engineer role

    • Continuing to learn and grow in the field of software development

  • Answered by AI

What people are saying about Amazon

View All
an influencer marketing manager
1w
Should she delete her LinkedIn post or not?
Asking for a friend, Since last 3 months, she has been facing multiple issues including mental harassment by her manager at her workplace. She tried all official channels including reporting to the HR and even to the CEO eventually, but surprisingly, nothing happened. Infact, as a retaliation, she was put on PIP last month by here manager. So finally as a response to this continuous harassment, she went to LinkedIn and called out her manager, the company and even the CEO. And this is what she has received in response! The company is threatening her of legal actions and now we are confused, whether to delete the posts or to maintain our stand. Any help would be highly recommended at this point!
FeedCard Image
Got a question about Amazon?
Ask anonymously on communities.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

Given 2 medium level questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. DSA question on Priority Queue
  • Q2. Hard Leetcode question on DP
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Duration of 90 min with 3 dsa questions with 2 medium and 1 hard level dsa questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Computer Networks interview questions
  • Q2. Operating system interview questions

Interview Preparation Tips

Topics to prepare for Amazon Software Development Engineer Intern interview:
  • Computer Networking
  • operating sytem
  • Algorithms
Interview preparation tips for other job seekers - keep working hard and you will surely get success somewhere.
All the Best
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

DSA-> linked list,tree

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

You have to solve coding question on a Platform

Round 2 - Technical 

(1 Question)

  • Q1. Dsa questions was asked
Round 3 - Coding Test 

Dsa questions were asked

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in Aug 2023.

Round 1 - Coding Test 

Solve leetcode questions and give contest which really helps to clear coding rounds

Round 2 - One-on-one 

(2 Questions)

  • Q1. Topics from arrays, dp and graph
  • Q2. Start with brute force and go with optimal solution along with time and space complexity
  • Ans. 

    Explore brute force and optimal solutions for a problem, detailing complexities and examples.

    • Brute Force: Check all combinations. E.g., finding the maximum in an array by comparing each element.

    • Optimal Solution: Use algorithms like divide and conquer. E.g., finding the maximum using a single pass.

    • Time Complexity: Brute force can be O(n^2) for nested loops; optimal can be O(n) for linear scans.

    • Space Complexity: Brute fo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, practice more questions and give the test

Amazon Interview FAQs

How many rounds are there in Amazon Software Development Engineer Intern interview?
Amazon interview process usually has 2-3 rounds. The most common rounds in the Amazon interview process are Coding Test, Technical and Resume Shortlist.
What are the top questions asked in Amazon Software Development Engineer Intern interview?

Some of the top questions asked at the Amazon Software Development Engineer Intern interview -

  1. Say you're dealing with really long integers. They're too long to fit into a re...read more
  2. Given a linked list (singly-linked, non-circular), swap the kth node with the k...read more
  3. long numbers, add the two numbers and store the result in a third linked list. ...read more
How long is the Amazon Software Development Engineer Intern interview process?

The duration of Amazon Software Development Engineer Intern interview process can vary, but typically it takes about 2-4 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.4/5

based on 27 interview experiences

Difficulty level

Easy 13%
Moderate 81%
Hard 6%

Duration

Less than 2 weeks 47%
2-4 weeks 40%
4-6 weeks 7%
More than 8 weeks 7%
View more

Interview Questions from Similar Companies

Uber Interview Questions
4.2
 • 155 Interviews
Expedia Group Interview Questions
3.7
 • 78 Interviews
LinkedIn Interview Questions
4.3
 • 69 Interviews
OLX Interview Questions
3.8
 • 60 Interviews
Facebook Interview Questions
4.3
 • 53 Interviews
Uplers Interview Questions
3.9
 • 43 Interviews
Groupon Interview Questions
3.1
 • 42 Interviews
Fareportal Interview Questions
3.3
 • 32 Interviews
Yahoo Interview Questions
4.6
 • 30 Interviews
Airbnb Interview Questions
3.7
 • 25 Interviews
View all
Amazon Software Development Engineer Intern Salary
based on 95 salaries
₹6 L/yr - ₹20 L/yr
9% less than the average Software Development Engineer Intern Salary in India
View more details

Amazon Software Development Engineer Intern Reviews and Ratings

based on 36 reviews

4.2/5

Rating in categories

4.4

Skill development

3.6

Work-life balance

4.7

Salary

3.2

Job security

3.9

Company culture

3.8

Promotions

4.1

Work satisfaction

Explore 36 Reviews and Ratings
Customer Service Associate
4.1k salaries
unlock blur

₹0.6 L/yr - ₹7.8 L/yr

Transaction Risk Investigator
3.1k salaries
unlock blur

₹2 L/yr - ₹6.3 L/yr

Associate
3k salaries
unlock blur

₹0.8 L/yr - ₹7 L/yr

Senior Associate
2.6k salaries
unlock blur

₹1.8 L/yr - ₹9 L/yr

Software Developer
2.2k salaries
unlock blur

₹27.1 L/yr - ₹56.3 L/yr

Explore more salaries
Compare Amazon with

Flipkart

3.9
Compare

TCS

3.6
Compare

Google

4.4
Compare

Netflix

4.3
Compare
write
Share an Interview