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
4.1

based on 24.2k Reviews

Filter interviews by

Amazon L4 Engineer Interview Questions and Answers

Updated 30 Sep 2022

Amazon L4 Engineer Interview Experiences

1 interview found

L4 Engineer Interview Questions & Answers

user image santhosh villa

posted on 30 Sep 2022

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 

Shell and python rounds have been conducted

Round 3 - Coding Test 

Python round conducted with different logic

Round 4 - Coding Test 

Shell scripting with different logic

Round 5 - Technical 

(3 Questions)

  • Q1. General questions have been asked
  • Q2. General array concept
  • Q3. Find biggerst number in a array
  • Ans. 

    To find the biggest number in an array.

    • Iterate through the array and compare each element with a variable that stores the current maximum value.

    • If the current element is greater than the maximum value, update the maximum value.

    • Return the maximum value after iterating through the entire array.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare coding logical and critical thinking rounds

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Minimum Knight Moves (LC Medium)
  • Q2. OS, CN, DB concepts like multithreading, semaphore, tcp vs udp, transaction and ACId properties. Java concepts like stack vs heap(memory), error vs exception. Any 1 Project discussion for 10 mins

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all the fundamental concepts of operating systems and databases. Refer to the company-tagged questions from LC.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Data structure and algorithm
  • Q2. Some tricky logical question
  • Q3. Stack and queue
  • Q4. Some basic question about system Design
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
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

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

(2 Questions)

  • Q1. What is distributed system
  • Ans. 

    A distributed system is a collection of independent computers that appear to the users as a single coherent system.

    • Consists of multiple computers connected through a network

    • Allows for parallel processing and fault tolerance

    • Examples include cloud computing, peer-to-peer networks, and distributed databases

  • Answered by AI
  • Q2. Jenkins to deploy the automation from git repo, procedure
  • Ans. 

    Use Jenkins pipeline to deploy automation from git repo

    • Create a Jenkins pipeline job

    • Configure the job to pull code from the git repository

    • Define the deployment steps in the Jenkinsfile

    • Use Jenkins plugins like Git plugin and Pipeline plugin for automation

    • Ensure proper permissions and credentials are set up for accessing the git repo

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

React based
problem solving round

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2023. 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 - Technical 

(2 Questions)

  • Q1. Given array of integer create subarray with sum = 0
  • Ans. 

    Create subarrays with sum = 0 from given array of integers.

    • Iterate through the array and keep track of the running sum.

    • Store the running sum in a hashmap and check if the current sum - any previous sum equals 0.

    • If yes, then the subarray between those two indices has a sum of 0.

  • Answered by AI
  • Q2. Left view of binary tree
  • Ans. 

    The left view of a binary tree is the set of nodes visible when the tree is viewed from the left side.

    • Traverse the tree in a level order manner and keep track of the first node at each level.

    • Use a queue to store nodes at each level and update the left view nodes accordingly.

    • Example: For a binary tree with root node 1, left child 2, and right child 3, the left view would be [1, 2].

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed before Jul 2023.

Round 1 - Coding Test 

45 min round. Similar to Leetcode medium level question.

Round 2 - Coding Test 

45 min coding round, 2 question asked

Round 3 - Technical 

(1 Question)

  • Q1. System design of proximity service
  • Ans. 

    Design a system for proximity service

    • Utilize geolocation data to track user locations

    • Implement algorithms to calculate proximity between users

    • Use real-time updates to notify users of nearby contacts

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. Behavioral questions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Implement an iterator to flatten 2D vector

Round 2 - One-on-one 

(1 Question)

  • Q1. Find shortest path to get all keys
  • Ans. 

    Use Dijkstra's algorithm to find the shortest path to get all keys

    • Implement Dijkstra's algorithm to find the shortest path in a graph

    • Consider the keys as nodes in the graph and the paths between keys as edges

    • Keep track of the keys collected and update the shortest path accordingly

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice algorithmic questions

Skills evaluated in this interview

Amazon Interview FAQs

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

Some of the top questions asked at the Amazon L4 Engineer interview -

  1. Find biggerst number in a ar...read more
  2. General questions have been as...read more
  3. General array conc...read more

Tell us how to improve this page.

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
 • 745 Interviews
Tata Group Interview Questions
4.2
 • 357 Interviews
BigBasket Interview Questions
3.9
 • 344 Interviews
Myntra Interview Questions
4.0
 • 205 Interviews
Blinkit Interview Questions
3.8
 • 168 Interviews
Uber Interview Questions
4.2
 • 156 Interviews
AmbitionBox Interview Questions
5.0
 • 144 Interviews
JioMart Interview Questions
3.9
 • 92 Interviews
View all
Amazon L4 Engineer Salary
based on 5 salaries
₹8 L/yr - ₹23.5 L/yr
39% less than the average L4 Engineer Salary in India
View more details
Customer Service Associate
4.1k salaries
unlock blur

₹0.6 L/yr - ₹6 L/yr

Transaction Risk Investigator
3.1k salaries
unlock blur

₹2.5 L/yr - ₹6.5 L/yr

Associate
2.8k salaries
unlock blur

₹0.8 L/yr - ₹6.7 L/yr

Senior Associate
2.4k salaries
unlock blur

₹2 L/yr - ₹10.1 L/yr

Program Manager
2k 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

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