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 Engineer2 Interview Questions and Answers

Updated 1 Aug 2023

Amazon Software Engineer2 Interview Experiences

1 interview found

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

Hackerrank was used for test

Round 2 - Technical 

(2 Questions)

  • Q1. Implement BFS to find the nearest neighbour
  • Ans. 

    Implement BFS algorithm to find the nearest neighbour

    • Create a queue to store nodes to be visited

    • Start with the initial node and add it to the queue

    • While the queue is not empty, dequeue a node, visit its neighbours, and add them to the queue

    • Repeat until the nearest neighbour is found

  • Answered by AI
  • Q2. Implement Priority queue using heap.
  • Ans. 

    Priority queue can be implemented using a heap data structure.

    • Create a min heap or max heap based on the priority order needed.

    • Insert elements into the heap based on their priority level.

    • Remove elements from the heap based on their priority level.

    • Heapify the heap after each insertion or deletion operation.

    • Example: Implementing a min heap for a priority queue where lower values have higher priority.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. STAR based scenario questions
  • Q2. Previous work experience and projects
  • Ans. 

    I have 3 years of experience working as a software engineer, with projects including a mobile app for tracking fitness goals and a web application for managing inventory.

    • 3 years of experience as a software engineer

    • Developed a mobile app for tracking fitness goals

    • Created a web application for managing inventory

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java questions and spring boot and data bse
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I was interviewed before Jan 2024.

Round 1 - Coding Test 

Difficulty level was medium to hard

Round 2 - Coding Test 

Difficulty level was medium to hard

Round 3 - Hld 

(1 Question)

  • Q1. Difficulty level was medium
Round 4 - HLD 

(1 Question)

  • Q1. Difficulty level was hard
Round 5 - Behavioral 

(1 Question)

  • Q1. Project grillings and difficulty level was medium to hard
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Java coding questions

Round 2 - Technical 

(3 Questions)

  • Q1. Explain Java oops concepts?
  • Ans. 

    Java oops concepts include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation hides the internal state of an object and restricts access to it.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides the implementation details and only shows the necessary features.

  • Answered by AI
  • Q2. What is collections?
  • Ans. 

    Collections in programming refer to data structures that allow you to store and manipulate groups of objects.

    • Collections provide a way to organize and manage data efficiently

    • Examples include lists, sets, maps, queues, and stacks

    • Collections can be used to perform operations like adding, removing, and searching for elements

  • Answered by AI
  • Q3. Write a code to reverse number?
  • Ans. 

    Code to reverse a number in JavaScript

    • Convert the number to a string to easily manipulate each digit

    • Use array methods like split, reverse, and join to reverse the number

    • Convert the reversed string back to a number before returning

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Introduction about yourself?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Proficient in programming languages like Java, Python, and C++

    • Completed internships at tech companies like Google and Microsoft

    • Enthusiastic about learning new technologies and working in a team environment

  • Answered by AI
  • Q2. Do you know about the company?
  • Ans. 

    The company is a leading software development firm specializing in creating innovative solutions for various industries.

    • Company focuses on creating innovative software solutions

    • Has a strong presence in various industries

    • Known for their expertise in software development

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Hackerrank Coding Test, Leetcode medium questions

Round 2 - Coding Test 

HLD test, was asked to design an online coding platform like leetcode

Round 3 - Technical 

(2 Questions)

  • Q1. Most interesting project you have worked on
  • Q2. How do you handle conflict at workplace

Interview Preparation Tips

Interview preparation tips for other job seekers - - Prepare leetcode medium
- Prepare HLD well
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was a medium-level DSA round

Round 2 - Coding Test 

This was also a DSA round

Round 3 - Coding Test 

This again a DSA round

Round 4 - Technical 

(1 Question)

  • Q1. Can't disclose the question because of NDA signed but it was a design round
Round 5 - One-on-one 

(1 Question)

  • Q1. This was a project discussion round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Coding Test 

Medium questions dp array graph recurrin

Round 2 - One-on-one 

(1 Question)

  • Q1. Leetcod easy question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Aptitude Test + some JAVA + SQL Questions

Round 2 - Coding Test 

DSA+SPRING+SQL+JAVA
IN THIS ROUND INTERVIEWER ASKED ME 1DSA QUESTION WHICH IS BASED ON DEQUE SOME SQL QUERIES WHICH IS ON JOINS AND BASIC SPRING QUESTIONS

Round 3 - Coding Test 

SAME AS THE 2ND ROUND BUT THE LEVEL INCREASED AS COMPARISON TO ROUND-2

Round 4 - Behavioral 

(1 Question)

  • Q1. IN THIS ROUND MANAGER ASKED ME SOME QUESTIONS ABOUT MY BACKGROUND AND COLLEGE PROJECT AND ASKED ABOUT MY PREVIOUS EXP
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Some database questions,some java questions .

Round 2 - Technical 

(3 Questions)

  • Q1. What is the difference between javascript and jQuery.
  • Ans. 

    JavaScript is a programming language used for web development, while jQuery is a library built with JavaScript to simplify HTML document traversal and manipulation.

    • JavaScript is a programming language, while jQuery is a library written in JavaScript.

    • JavaScript can be used for a wide range of tasks, while jQuery is mainly used for DOM manipulation and event handling.

    • JavaScript is a core technology for web development, w...

  • Answered by AI
  • Q2. Define different types of join
  • Ans. 

    Different types of joins are used in SQL to combine rows from two or more tables based on a related column between them.

    • Inner Join: Returns rows when there is at least one match in both tables.

    • Left Join (or Left Outer Join): Returns all rows from the left table and the matched rows from the right table.

    • Right Join (or Right Outer Join): Returns all rows from the right table and the matched rows from the left table.

    • Full ...

  • Answered by AI
  • Q3. Define multithreading concept and exception handling.
  • Ans. 

    Multithreading allows multiple threads to run concurrently, while exception handling deals with errors in a program.

    • Multithreading involves running multiple threads simultaneously to improve performance and responsiveness.

    • Threads share the same memory space but have their own program counter and registers.

    • Exception handling is a mechanism to handle errors or exceptional situations in a program.

    • It helps prevent the prog...

  • Answered by AI

Skills evaluated in this interview

Amazon Interview FAQs

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

Some of the top questions asked at the Amazon Software Engineer2 interview -

  1. Implement BFS to find the nearest neighb...read more
  2. Implement Priority queue using he...read more

Tell us how to improve this page.

Amazon Software Engineer2 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 748 Interviews
Tata Group Interview Questions
4.2
 • 358 Interviews
BigBasket Interview Questions
3.9
 • 357 Interviews
Myntra Interview Questions
4.0
 • 214 Interviews
Blinkit Interview Questions
3.7
 • 178 Interviews
AmbitionBox Interview Questions
4.9
 • 153 Interviews
Uber Interview Questions
4.2
 • 149 Interviews
JioMart Interview Questions
3.9
 • 94 Interviews
View all
Amazon Software Engineer2 Salary
based on 124 salaries
₹27.4 L/yr - ₹87 L/yr
177% more than the average Software Engineer2 Salary in India
View more details

Amazon Software Engineer2 Reviews and Ratings

based on 4 reviews

3.0/5

Rating in categories

2.9

Skill development

2.7

Work-life balance

4.0

Salary

2.2

Job security

2.4

Company culture

2.5

Promotions

2.7

Work satisfaction

Explore 4 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.3 L/yr - ₹6.5 L/yr

Associate
2.8k salaries
unlock blur

₹0.8 L/yr - ₹6.9 L/yr

Senior Associate
2.5k salaries
unlock blur

₹2 L/yr - ₹10.1 L/yr

Program Manager
2.3k salaries
unlock blur

₹9 L/yr - ₹36 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