Upload Button Icon Add office photos

Filter interviews by

Amazon Development Centre India Web Developer Interview Questions and Answers

Updated 23 Oct 2024

Amazon Development Centre India Web Developer Interview Experiences

1 interview found

Web Developer Interview Questions & Answers

user image Anonymous

posted on 23 Oct 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Percentage, time and work , others any questions

Interview Preparation Tips

Interview preparation tips for other job seekers - You can support someone looking for a job by checking their resume for content, style and grammar. Help them focus on readability and key skills that match their industry and prospective job.

Interview questions from similar companies

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

Quantitative test on general questions like math , grammer

Round 2 - Technical 

(2 Questions)

  • Q1. Project details
  • Q2. How to handle the issues
  • Ans. 

    Handling issues in web development involves identifying, troubleshooting, and resolving technical problems.

    • Identify the root cause of the issue by debugging code and analyzing error messages

    • Troubleshoot by testing different solutions and checking for compatibility issues

    • Resolve the issue by implementing the appropriate fix and testing it thoroughly

    • Document the issue and solution for future reference

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

My mostly question were around node js frame works and other tools

Round 2 - One-on-one 

(2 Questions)

  • Q1. Case study for the question asked
  • Q2. Tell me something more about you
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on optimizations
  • Q2. Question on React Js
Round 2 - Coding Test 

Medium level DSA question in JS

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. They asked me about web workers and web assembly. The whole questions were planned to reject the candidate.

Interview Preparation Tips

Interview preparation tips for other job seekers - Better opportunities are there.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Dec 2022. There were 3 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 - Technical 

(2 Questions)

  • Q1. Asked about fundamentals of javascript and react
  • Q2. React lifecycle in functional components
  • Ans. 

    React lifecycle in functional components

    • useEffect hook replaces lifecycle methods

    • useEffect runs after every render by default

    • useEffect can be controlled by dependencies array

    • useEffect cleanup function can be used to clean up effects

    • useLayoutEffect hook runs synchronously after DOM mutations

  • Answered by AI
Round 3 - Coding Test 

Return numbers in array equal to sum

Interview Preparation Tips

Interview preparation tips for other job seekers - better understanding of javascript fundamentals and react

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Magic methods in php basic programming questions
  • Q2. Technical questions from php

Interview Preparation Tips

Interview preparation tips for other job seekers - The place is way too far and they do not entertain people's time.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(5 Questions)

  • Q1. Self introduction?
  • Q2. How much struggle you faced to get this position?
  • Q3. What is your short term goal?
  • Q4. What is your long term goal?
  • Q5. Salary package?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't get nervous while present any interview or any presentation and you must have good communication skills for this job.

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

  • Q1. Triplets with Given Sum

    You are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K.

    An array is said t...

  • Ans. Brute Force
    • The most trivial approach would be to find all triplets of the array and count all such triplets whose ‘SUM’ = 'K'.
    • We can find the answer using three nested loops for three different indexes and check if the values at those indexes sum up to 'K'.
    • Create a set  to keep the track of triplets we have visited. Run first loop from i = 0 to i = ‘N’ - 3, second loop from j = i + 1 to j = ‘N’ - 2 and third loop ...
  • Answered by CodingNinjas
  • Q2. Magic Index

    You are given a sorted array A consisting of N integers. Your task is to find the magic index in the given array.

    Note :
    A magic index in an array A[0 ... N - 1] is defined to be an index i s...
  • Ans. Brute Force Approach
    • In this brute force approach, we will check each element one by one and try to find if there is any magic index in the given array or not.
    • In this approach, we will initialize our answer variable (say, ans) with ans = -1.
    • Then we will iterate in the array one by one (say, loop variable i) from the beginning and check if there is any magic index in our array or not.
    • If we find any index in the array suc...
  • Answered by CodingNinjas
Round 2 - Video Call 

(4 Questions)

Round duration - 50 Minutes
Round difficulty - Hard

  • Q1. Alien dictionary

    You have been given a sorted (lexical order) dictionary of an alien language. Write a function that finds the order of characters in the alien language. This dictionary will be given to yo...

  • Ans. Permutations Approach

    Approach:

    • Find all the distinct characters present in all the words.
    • Generate all permutations of these distinct characters.
    • Treat each of the permutations as a correct sequence of alphabets. Now check if the given words are sorted according to this sequence. In order to do this, we will:-
      • For all words from 1 to n - 1, let the current word be ‘currWord’ and the next word be ‘nextWord’.
      • One by one compa...
  • Answered by CodingNinjas
  • Q2. Jumping Numbers

    You are given a positive integer N, your task is to find all the Jumping Numbers smaller than or equal to N.

    A number is defined as a Jumping Number if all adjacent digits in it have an ...

  • Ans. Brute Force Approach

    This is the basic solution to this problem.

     

    • Traverse all numbers from 0 to N.
    • For every traversed number, check if it is a Jumping Number or not.
    • To check if a number is jumping or not, we’ll make a boolean function named check(), which will return true if the number is a jumping number.
    • Inside this check function, we’ll first extract all the digits of the number and store it in an array.
    • Then we c...
  • Answered by CodingNinjas
  • Q3. Matching Prefix

    You are given an integer ’N’ denoting the length of the array ‘Arr’ of strings made up of lower case English alphabets. The cost of this array is equal to the sum of length of each string i...

  • Ans. Brute Force

    For each string in the array consider each of its prefix string one by one, now check what will be the cost if the current prefix string is used to delete matching prefixes from all the strings in the array. Keep track of the prefix string that had the lowest cost and finally return that string. 


     The steps are as follows :

    • Initialize minCost to INT_MAX it will store the minimum cost so far, and init...

  • Answered by CodingNinjas
  • Q4. Technical Questions

    How do you ensure that your website design or web application is accessible and user-friendly? How do you structure your CSS and JavaScript to make it easier for other developers to work...

Round 3 - HR 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Easy

  • Q1. Basic HR Questions

    Why should we hire you?

    What is your biggest regret?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Frontend Developer in NoidaEligibility criteriaNo critertiaInfo Edge India (Naukri.com) interview preparation:Topics to prepare for the interview - Data Structure, Algorithms, JavaScript, HTML/CSS, ReactTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Be consistent, practice regularly whatever you read/study.
Tip 2 : Apply what you learn through code.

Application resume tips for other job seekers

Tip 1 : Have some projects on your resume.
Tip 2 : If you have an internship or training explain it in a proper way like what are the techniques you learned during your training.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Group Discussion 

What is your name
From
Qualification
Family background
Hobbies
Weekness strength
Thanks you

Round 2 - Aptitude Test 

Mathematics,communication skills,

Round 3 - HR 

(5 Questions)

  • Q1. Self introduction
  • Q2. My name is mounika
  • Q3. I caming form narasaraopet,palnadu district
  • Q4. Caming to my familybackground we have 4 members My mother name is pravathi My father name is narasi reddy I have one sister she studying b.tech 3rd year My father is a farmer My mother is farmer
  • Q5. My hobbies are reading books, movies, playing kho kho no weakness My goal is to became a software engineer

Interview Preparation Tips

Topics to prepare for Amazon Web Developer interview:
  • Web developer,lyuxer security,

Amazon Development Centre India Interview FAQs

How many rounds are there in Amazon Development Centre India Web Developer interview?
Amazon Development Centre India interview process usually has 1 rounds. The most common rounds in the Amazon Development Centre India interview process are Aptitude Test.

Tell us how to improve this page.

People are getting interviews through

based on 1 Amazon Development Centre India interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Web Developer Interview Questions from Similar Companies

View all
Amazon Development Centre India Web Developer Salary
based on 4 salaries
₹1 L/yr - ₹8.5 L/yr
13% more than the average Web Developer Salary in India
View more details
Customer Service Associate
2.8k salaries
unlock blur

₹1.4 L/yr - ₹5.6 L/yr

Transaction Risk Investigator
1.4k salaries
unlock blur

₹2.2 L/yr - ₹6.5 L/yr

Customer Service Executive
980 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Senior Associate
806 salaries
unlock blur

₹2.5 L/yr - ₹8.5 L/yr

Quality Specialist
625 salaries
unlock blur

₹3 L/yr - ₹7.1 L/yr

Explore more salaries
Compare Amazon Development Centre India with

Microsoft Corporation

4.1
Compare

Google

4.4
Compare

IBM

4.1
Compare

Oracle

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview