Upload Button Icon Add office photos

Filter interviews by

Amazon Development Centre India Software Developer Interview Questions and Answers

Updated 24 Dec 2024

Amazon Development Centre India Software Developer Interview Experiences

7 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium level question are asked

Round 2 - Technical 

(1 Question)

  • Q1. Given a array and asked sum
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Two questions
One dp
One on heap

Round 2 - Technical 

(2 Questions)

  • Q1. Binary search based question
  • Q2. Behavioural question

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was good and very informative

Round 2 - HR 

(2 Questions)

  • Q1. Strength weakness
  • Q2. Why this company
  • Ans. 

    I am impressed by the company's innovative projects, strong company culture, and opportunities for growth.

    • Innovative projects such as the development of cutting-edge software solutions

    • Strong company culture that values teamwork, collaboration, and employee well-being

    • Opportunities for growth and advancement within the company, such as training programs and mentorship opportunities

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be well prepared

What people are saying about Amazon Development Centre India

View All
a catalog associate
6d
90 hour work week..really?
To those CEOs demanding inhuman working hours of 70 and 90 hours a week, here is the reply: " 3 day work possible in a week with AI ; Your purpose of life is NOT just JOB" - Sir Bill Gates
Got a question about Amazon Development Centre India?
Ask anonymously on communities.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Question based on greedy related to train platform
  • Q2. Question on BST
Round 2 - Technical 

(2 Questions)

  • Q1. Question Based on array
  • Q2. Question based on Dp
Round 3 - Technical 

(2 Questions)

  • Q1. Question based on tree
  • Q2. Question on oops, os, dbms
Round 4 - Technical 

(2 Questions)

  • Q1. Question on tree
  • Q2. Question on my previous experience

Amazon Development Centre India interview questions for designations

 Software Developer Intern

 (4)

 Software Engineer

 (3)

 Database Developer

 (1)

 ETL Developer

 (1)

 Java Developer

 (1)

 Web Developer

 (1)

 Product Developer

 (1)

 Software Development Engineer

 (5)

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

I applied via campus placement at Kakatiya Institute of Technology and Science, Warangal and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

MCQ Style questions about basic of computer science

Round 2 - Coding Test 

Medium level coding questions, interviewer were helpful in nudging me in right direction

Round 3 - Coding Test 

More coding questions, then some technical questions in the very same round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be relaxed and feel comfortable, interviewers also help out, they are trying to hire you
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test difficulty is hard.

Round 2 - Coding Test 

Difficulty was moderate. Had one question in DP and one question normal DSA

Round 3 - HR 

(1 Question)

  • Q1. HR round was soo good and engaging. Good interview experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via campus placement at Jaypee Institute of Information Technology, Noida and was interviewed before Oct 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 - Coding Test 

Medium level leetcode questions

Round 3 - Coding Test 

Binary search, burning tree variation

Round 4 - bar raiser 

(1 Question)

  • Q1. Vague problem statement

Interview Preparation Tips

Interview preparation tips for other job seekers - keep communication skills good and deep dive into requirements. keep expressing your thoughts into words and keep talking

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Prime number, Convert given number into hours format with a challengeToken to validate and return the string

Round 2 - Technical 

(2 Questions)

  • Q1. OOPs Inheritance
  • Q2. OOPS Polymorphism
Round 3 - Technical 

(2 Questions)

  • Q1. Sum of n using recursion
  • Ans. 

    Recursively calculate the sum of n numbers

    • Define a base case for when n is 0 or 1

    • Recursively call the function with n-1 and add n to the result

    • Return the result

  • Answered by AI
  • Q2. Practical application of dsa in projects
  • Ans. 

    Data Structures and Algorithms (DSA) are used in projects for efficient data storage, retrieval, and manipulation.

    • Optimizing search and sorting algorithms for faster performance

    • Implementing data structures like arrays, linked lists, trees, and graphs for organizing data

    • Using DSA to solve complex problems like pathfinding, data compression, and cryptography

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

DSA + JAVA + Spring boot

Round 2 - Case Study 

LLD (bookmyshow) + DSA

Interview Preparation Tips

Topics to prepare for Lenskart Software Developer interview:
  • Spring batch
  • spring Jpa
  • Transactions
  • Microservices
Interview preparation tips for other job seekers - DSA + HLD
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Implement an immutable class.
  • Ans. 

    An immutable class is a class whose instances cannot be modified after creation.

    • Use final keyword for class declaration to prevent inheritance

    • Make all fields private and final to prevent modification

    • Do not provide setter methods, only getter methods should be used

  • Answered by AI
  • Q2. Implement a springboot service that intercepts http requests.
  • Ans. 

    Implement a Springboot service to intercept HTTP requests.

    • Create a Springboot application with necessary dependencies.

    • Implement a custom interceptor by extending HandlerInterceptorAdapter.

    • Override preHandle and postHandle methods to intercept requests and responses.

    • Register the interceptor in the WebMvcConfigurerAdapter configuration class.

  • Answered by AI

Skills evaluated in this interview

Amazon Development Centre India Interview FAQs

How many rounds are there in Amazon Development Centre India Software Developer interview?
Amazon Development Centre India interview process usually has 2-3 rounds. The most common rounds in the Amazon Development Centre India interview process are Coding Test, Technical and Aptitude Test.
How to prepare for Amazon Development Centre India Software Developer 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 Development Centre India. The most common topics and skills that interviewers at Amazon Development Centre India expect are C#, C++, Distribution System, Java and OOAD.
What are the top questions asked in Amazon Development Centre India Software Developer interview?

Some of the top questions asked at the Amazon Development Centre India Software Developer interview -

  1. HR round was soo good and engaging. Good interview experie...read more
  2. Question based on greedy related to train platf...read more
  3. Question Based on ar...read more

Tell us how to improve this page.

Amazon Development Centre India Software Developer Interview Process

based on 9 interviews

2 Interview rounds

  • Aptitude Test Round
  • Coding Test Round
View more
Amazon Development Centre India Software Developer Salary
based on 104 salaries
₹10 L/yr - ₹43.1 L/yr
210% more than the average Software Developer Salary in India
View more details

Amazon Development Centre India Software Developer Reviews and Ratings

based on 13 reviews

3.9/5

Rating in categories

4.0

Skill development

3.5

Work-life balance

4.1

Salary

3.8

Job security

3.9

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 13 Reviews and Ratings
Customer Service Associate
2.9k salaries
unlock blur

₹1.2 L/yr - ₹5.6 L/yr

Transaction Risk Investigator
1.4k salaries
unlock blur

₹2.1 L/yr - ₹6.5 L/yr

Customer Service Executive
875 salaries
unlock blur

₹1 L/yr - ₹5.8 L/yr

Senior Associate
757 salaries
unlock blur

₹2.5 L/yr - ₹8.5 L/yr

Quality Specialist
640 salaries
unlock blur

₹3 L/yr - ₹7.1 L/yr

Explore more salaries
Compare Amazon Development Centre India with

Microsoft Corporation

4.0
Compare

Google

4.4
Compare

IBM

4.0
Compare

Oracle

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