Upload Button Icon Add office photos

Amazon Web Services

Compare button icon Compare button icon Compare

Filter interviews by

Amazon Web Services Web Developer Interview Questions and Answers

Updated 20 Nov 2024

Amazon Web Services Web Developer Interview Experiences

3 interviews found

Web Developer Interview Questions & Answers

user image Anonymous

posted on 20 Nov 2024

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. I am fine or not
  • Q2. I want this job
  • Q3. I want information for selected in job and interview
  • Q4. And I want the company your details and related studies details
  • Q5. And it will be a good job for me so please select in this company for my family situation
Round 2 - Group Discussion 

Group discussion related in company

Interview Preparation Tips

Interview preparation tips for other job seekers - Mmm

Web Developer Interview Questions & Answers

user image Anonymous

posted on 22 Oct 2024

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

I applied via Job Fair and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude of quantitative, reasoning,general awareness of job followed rules

Round 2 - Coding Test 

C,c++,Java, Android,html css ,php

Round 3 - HR 

(2 Questions)

  • Q1. Experience , correspondence all graduation topics
  • Q2. Self introduction with our skill

Interview Preparation Tips

Interview preparation tips for other job seekers - Only to focus your stream works

Web Developer Interview Questions Asked at Other Companies

Q1. Last Index of Element The task is to determine the index of the l ... read more
Q2. Check Indices With Given Difference Problem Statement You are pro ... read more
asked in Evalueserve
Q3. Reverse Linked List Problem Statement Given a singly linked list ... read more
Q4. Intersection of Linked List Problem You are provided with two sin ... read more
Q5. Most Frequent Non-Banned Word Problem Statement Given a paragraph ... read more

Web Developer Interview Questions & Answers

user image Anonymous

posted on 28 Aug 2022

I applied via Approached by Company and was interviewed in Jul 2022. There were 2 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 - Aptitude Test 

What is mean web developer?

Interview Preparation Tips

Interview preparation tips for other job seekers - We want to work be deticated, love and like this . And we will be suscess.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Event loop in NodeJS
  • Ans. 

    Event loop is a mechanism in NodeJS that allows non-blocking I/O operations to be performed asynchronously.

    • Event loop is responsible for handling all I/O operations in NodeJS

    • It allows NodeJS to perform non-blocking I/O operations asynchronously

    • Event loop continuously checks the event queue for new events to process

    • Callbacks are used to handle events in NodeJS

  • Answered by AI

Skills evaluated in this interview

I appeared for an interview in Mar 2021.

Interview Questionnaire 

1 Question

  • Q1. .net core , mvc basics and some scripting language

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basics , know about your current project . If interviewer asks you if you have to ask anything , do ask . For my case I asked for his advice where I need to improve. He answered genuinely and even came to know about my other technical skills .

Interview Questionnaire 

1 Question

  • Q1. What is meant by javascript closure? And why do we use it?
  • Ans. 

    A closure is a function that has access to its outer function's variables, even after the outer function has returned.

    • A closure is created when a function is defined inside another function.

    • It allows for private variables and functions in JavaScript.

    • Closures are used for data hiding, encapsulation, and creating modules.

    • Example: function outer() { var x = 10; function inner() { console.log(x); } return inner; } var clos

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

5 Questions

  • Q1. Basic structure of an HTML page
  • Ans. 

    Basic structure of an HTML page includes doctype declaration, html, head, and body tags.

    • DOCTYPE declaration specifies the HTML version

    • HTML tag wraps the entire content of the page

    • Head tag contains meta information, title, and links to external resources

    • Body tag contains the visible content of the page

  • Answered by AI
  • Q2. What is the difference between padding and margin?
  • Ans. 

    Padding is the space inside an element, while margin is the space outside an element.

    • Padding is used to create space between an element's content and its border.

    • Margin is used to create space between an element's border and the adjacent elements.

    • Padding is affected by the background color of the element, while margin is not.

    • Padding can be set individually for each side of an element (top, right, bottom, left), while ma...

  • Answered by AI
  • Q3. What is Box Model?
  • Ans. 

    Box Model is a concept in CSS where every element is treated as a box with content, padding, border, and margin.

    • Box Model consists of content, padding, border, and margin.

    • Content is the actual content of the box.

    • Padding is the space between the content and the border.

    • Border is the line that goes around the padding and content.

    • Margin is the space outside the border.

  • Answered by AI
  • Q4. What are different types of directives in Angular?
  • Ans. 

    Directives in Angular are markers on DOM elements that tell Angular to attach a specified behavior to that element.

    • There are three types of directives in Angular: Component, Structural, and Attribute.

    • Component directives are used to create reusable UI components.

    • Structural directives are used to change the structure of the DOM.

    • Attribute directives are used to change the appearance or behavior of an element.

    • Examples of ...

  • Answered by AI
  • Q5. Difference between JIT compiler and AOT?
  • Ans. 

    JIT compiles code at runtime while AOT compiles code before runtime.

    • JIT stands for Just-In-Time compilation and compiles code at runtime.

    • AOT stands for Ahead-Of-Time compilation and compiles code before runtime.

    • JIT is used in Java Virtual Machine (JVM) while AOT is used in languages like C and C++.

    • JIT can result in slower startup time but faster execution while AOT can result in faster startup time but slower execution...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to answer 80 % of the questions you are asked, you will be able to crack the interview

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops concepts, Exception Handling & other Core Java concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Search & Contact recruiters who hire for ur domain on LinkedIn & share ur resume with them, search relevant jobs on LinkedIn & apply.

Go to companies' websites & create ur profile.

Update ur profile daily on naukri. 👍🏻

I applied via Recruitment Consultant and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Just Basic OOP's question, What is Interface, why use them?
  • Q2. What is Abstract Class?
  • Ans. 

    Abstract class is a class that cannot be instantiated and is used as a base class for other classes.

    • An abstract class can have abstract and non-abstract methods.

    • Abstract methods have no implementation and must be implemented by the derived class.

    • An abstract class can have constructors and fields.

    • An abstract class can be used to define a common interface for a group of related classes.

    • Example: Animal is an abstract clas...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - A recruiter found me on Naukari Site the name of the person is Kartik (*****), and then, set up an initial L1 interview with the peers. The initial contact was a phone screen regarding the job location, title, salary, etc. in Banglore after that, he set up the meetings with peers for the interview.

The interview was too good, but one thing which I feel bad Interviewer asked me salary while this is the part of the HR department, so why Interviewer asked me salary during an interview, this is totally not good for any candidate because if the candidate expectation is greater than the interviewer salary then definitely he will not hire that candidate that means.  



After Interview:-

 Then, Kartik HR contact me again to tell that they are willing to offer less salary 14LPA than that was decided
- I said yes, and they asked me joining date
- I provided the next week date itself
- But I never heard back from them afterward.
- I tried to contact Kartik, but he is not willing to reply

Very unprofessional behavior and bad experience. I don't know were they just wasting my time.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Tell about yourself.
  • Ans. 

    I am a software developer with experience in various programming languages and a passion for creating innovative solutions.

    • Proficient in Java, C++, and Python

    • Experience with web development using HTML, CSS, and JavaScript

    • Familiarity with agile development methodologies

    • Strong problem-solving and analytical skills

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q2. What is array and how it is different from linked lists?
  • Ans. 

    Array is a collection of elements of same data type. Linked list is a data structure where each element points to the next one.

    • Arrays have fixed size, linked lists can grow dynamically

    • Accessing elements in an array is faster than in a linked list

    • Inserting or deleting elements in a linked list is faster than in an array

    • Arrays are stored in contiguous memory locations, linked lists are not

    • Arrays are used for random acces

  • Answered by AI
  • Q3. OSI model (Networking)?
  • Ans. 

    The OSI model is a conceptual model that describes the communication functions of a telecommunication or computing system.

    • The OSI model has 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has a specific function and communicates with the layers above and below it.

    • The Physical layer deals with the physical transmission of data, while the Application layer deals with u...

  • Answered by AI
  • Q4. Explain OSI model modules?
  • Ans. 

    The OSI model is a conceptual model that characterizes and standardizes the communication functions of a telecommunication or computing system.

    • The OSI model has 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has a specific function and communicates with the layers above and below it.

    • The Physical layer deals with the physical transmission of data, while the Applicati...

  • Answered by AI
  • Q5. About project? what technologies used? How you implemented?

Interview Preparation Tips

Interview preparation tips for other job seekers - My personal advice is to first be prepared on what u have written in Resume.
Get some current knowledge about the company like CEO name, latest tech. on which company working on .

Skills evaluated in this interview

Amazon Web Services Interview FAQs

How many rounds are there in Amazon Web Services Web Developer interview?
Amazon Web Services interview process usually has 2-3 rounds. The most common rounds in the Amazon Web Services interview process are Aptitude Test, Resume Shortlist and Coding Test.
What are the top questions asked in Amazon Web Services Web Developer interview?

Some of the top questions asked at the Amazon Web Services Web Developer interview -

  1. And it will be a good job for me so please select in this company for my family...read more
  2. I want information for selected in job and interv...read more
  3. Experience , correspondence all graduation top...read more

Tell us how to improve this page.

Amazon Web Services Web Developer Interview Process

based on 4 interviews

Interview experience

5
  
Excellent
View more
Amazon Web Services Web Developer Salary
based on 5 salaries
₹1.2 L/yr - ₹10 L/yr
21% more than the average Web Developer Salary in India
View more details

Amazon Web Services Web Developer Reviews and Ratings

based on 5 reviews

4.8/5

Rating in categories

4.2

Skill development

4.3

Work-life balance

4.1

Salary

4.1

Job security

4.5

Company culture

4.1

Promotions

4.1

Work satisfaction

Explore 5 Reviews and Ratings
Digital Associate
314 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Cloud Support Engineer
283 salaries
unlock blur

₹10 L/yr - ₹38 L/yr

Cloud Support Associate
176 salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Cloud Engineer
104 salaries
unlock blur

₹8 L/yr - ₹28.8 L/yr

Solution Architect
95 salaries
unlock blur

₹20 L/yr - ₹70.5 L/yr

Explore more salaries
Compare Amazon Web Services with

Amazon

4.1
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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