Faster and better experience!
i
Amazon
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by
I applied via Company Website and was interviewed in Jul 2023. There were 2 interview rounds.
I applied via Amazon.jobs and was interviewed in Apr 2022. There were 3 interview rounds.
Aptitude test like basic aptitude
I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.
50mins aptitude round
What people are saying about Amazon
I applied via Company Website
STLC is Software Testing Life Cycle. Documentation done between requirement analysis and test case includes test plan, test strategy, and test scenarios.
STLC is a process followed by testers to ensure quality of software
Documentation includes test plan, test strategy, and test scenarios
Test plan outlines the testing approach and scope
Test strategy outlines the testing methodology and tools used
Test scenarios are detail
Test cases for specific booking functionality of IRCTC application.
Verify successful booking of tickets for different classes (sleeper, AC, etc.)
Verify cancellation of booked tickets
Verify availability of seats for different trains and routes
Verify payment gateway integration
Verify error messages for invalid inputs
Test scenarios and test cases for a mobile application
Test login functionality with valid and invalid credentials
Test navigation between screens and menus
Test app performance under different network conditions
Test app behavior when receiving notifications or calls
Test app compatibility with different devices and operating systems
To identify the root cause analysis when WhatsApp gets crashed, follow these steps:
Check for any recent updates or changes made to the app
Verify if the crash is occurring on a specific device or for all users
Analyze crash logs or error messages to identify any patterns or common factors
Consider any recent changes in the device's operating system or firmware
Test the app on different devices and operating systems to repl...
Amazon interview questions for designations
I applied via Naukri.com and was interviewed in Aug 2020. There were 4 interview rounds.
Black box testing is a software testing technique where the tester tests the functionality of the software without knowing its internal code.
Tester focuses on the inputs and outputs of the software
Tester does not have knowledge of the internal workings of the software
Used to test the functionality of the software
Examples include GUI testing, regression testing, and acceptance testing
Manual testing involves testing software manually without the use of automated tools.
Manual testing is time-consuming but necessary to ensure software quality.
Examples of manual testing include exploratory testing, regression testing, and acceptance testing.
Manual testing can also involve usability testing, accessibility testing, and localization testing.
Manual testing requires attention to detail and the ability to th...
My final year project involved manual testing of a web application.
I tested the functionality of the web application manually
I created test cases and executed them manually
I reported bugs and issues to the development team
I learned the importance of thorough testing and attention to detail
I gained experience in using testing tools and techniques
Boundary value analysis and equivalent partition methods are techniques used in software testing.
Boundary value analysis involves testing the boundaries of input values to ensure the software handles them correctly.
Equivalent partitioning involves dividing input values into classes and testing representative values from each class.
Both techniques help identify potential errors and improve software quality.
For example, ...
Priority of a bug can be determined by its impact on the system and the number of users affected.
Consider the severity of the bug
Analyze the frequency of occurrence
Check the number of users affected
Evaluate the impact on the system
Prioritize based on the above factors
Prioritize test cases based on risk and automate where possible.
Identify critical test cases and execute them first
Automate repetitive test cases using tools like Selenium
Use data-driven testing to cover multiple scenarios with one test case
Leverage parallel testing to run multiple test cases simultaneously
Collaborate with team members to divide and conquer the workload
Get interview-ready with Top Amazon Interview Questions
I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.
Emails to the host and guests.
I have the necessary skills, experience, and passion for the role.
I have relevant experience in the industry
I possess the required skills and qualifications
I am passionate about the work and eager to contribute
I have a track record of success in similar roles
Seeking new challenges and growth opportunities in a different environment.
Desire for new challenges and learning experiences
Opportunity for career advancement
Seeking a better work-life balance
Interest in exploring different industries or sectors
I applied via Naukri.com and was interviewed in Dec 2022. There were 3 interview rounds.
I have over 8 years of experience in financial analysis, project management, and team leadership.
Managed a team of analysts to successfully implement cost-saving initiatives
Led cross-functional projects resulting in increased efficiency and profitability
Performed in-depth financial analysis to support strategic decision-making
Collaborated with senior management to develop and execute business plans
My product handling experience has been excellent, with a focus on efficiency and accuracy.
Implemented efficient product handling processes to streamline operations
Ensured accurate inventory management and tracking
Trained team members on proper product handling techniques
Utilized technology to improve product handling efficiency, such as barcode scanning systems
The customer feedback on my work was overwhelmingly positive, highlighting my attention to detail and excellent communication skills.
Received positive feedback on attention to detail
Received positive feedback on communication skills
Customers expressed satisfaction with the overall experience
ACID stands for Atomicity, Consistency, Isolation, and Durability in databases.
Atomicity ensures that all operations in a transaction are completed successfully or none at all.
Consistency ensures that the database remains in a consistent state before and after the transaction.
Isolation ensures that multiple transactions can be executed concurrently without affecting each other.
Durability ensures that once a transaction...
Checked exceptions are checked at compile time while unchecked exceptions are not checked at compile time.
Checked exceptions are subclasses of Exception class except RuntimeException and its subclasses.
Unchecked exceptions are subclasses of RuntimeException and Error classes.
Checked exceptions must be caught or declared in the method signature using 'throws' keyword.
Unchecked exceptions do not need to be caught or decl...
To find the minimum difference between any two integers of 2 sorted lists, iterate through both lists simultaneously and keep track of the minimum difference.
Iterate through both sorted lists simultaneously
Keep track of the minimum difference found so far
Update the minimum difference if a smaller difference is found
I appeared for an interview before Dec 2020.
Round duration - 90 minutes
Round difficulty - Hard
This was an online coding round where we were supposed to solve 2 questions under 90 minutes . Both the questions in my set were related to Graphs and were quite tricky and heavy to implement.
Given a directed graph with a specified number of vertices V
and edges E
, your task is to calculate the total number of distinct paths from a given source node S
to all ot...
Calculate the total number of distinct paths from a given source node to all other nodes in a directed graph.
Use dynamic programming to keep track of the number of paths from the source node to each node in the graph.
Consider using modular arithmetic to handle large numbers and prevent overflow.
Start by initializing the number of paths from the source node to itself as 1.
Iterate through the edges of the graph and updat...
You are provided with a number of courses 'N', some of which have prerequisites. There is a matrix named 'PREREQUISITES' of size 'M' x 2. This matrix indicates that fo...
Given courses with prerequisites, determine a valid order to complete all courses.
Use topological sorting to find a valid order of courses.
Create a graph with courses as nodes and prerequisites as edges.
Start with courses that have no prerequisites and remove them from the graph.
Continue this process until all courses are taken or there are no valid courses left.
If there is a cycle in the graph, it is impossible to com
Round duration - 60 Minutes
Round difficulty - Medium
This was a Data Structures and Algorithms round with some standard questions . I was expected to come up with an
efficient approach and code it as well .
You are provided with 'N' intervals, each containing two integers denoting the start time and end time of the interval.
Your task is to merge all overlapping intervals a...
Merge overlapping intervals and return sorted list of merged intervals.
Sort the intervals based on start times.
Iterate through intervals and merge overlapping intervals.
Return the merged intervals in sorted order.
Given a 2-dimensional binary matrix called Mat
of size N x M that consists solely of 0s and 1s, find the length of the longest path from a specified source cell to a destina...
Find the length of the longest path from a source cell to a destination cell in a binary matrix.
Use depth-first search (DFS) to explore all possible paths from source to destination.
Keep track of visited cells to avoid revisiting them.
Return the length of the longest path found, or -1 if no path exists.
Round duration - 50 Minutes
Round difficulty - Medium
This was also a DSA round where I was asked to code only one of the questions but I eventually ended up coding both
as I had some spare time and explained my approches very smoothly to the interviewer . This round went preety well .
Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...
Find the length of the longest strictly increasing subsequence in an array of integers.
Use dynamic programming to solve this problem efficiently.
Initialize an array to store the length of the longest increasing subsequence ending at each index.
Iterate through the array and update the length of the longest increasing subsequence for each element.
Return the maximum value in the array as the result.
Given a rotated sorted array ARR
of size 'N' and an integer 'K', determine the index at which 'K' is present in the array.
1. If 'K' is not present...
Given a rotated sorted array, find the index of a given integer 'K'.
Use binary search to find the pivot point where the array is rotated.
Then perform binary search on the appropriate half of the array to find 'K'.
Handle cases where 'K' is not present in the array by returning -1.
Round duration - 50 Minutes
Round difficulty - Medium
This was also a DSA round with 2 questions of Medium to Hard difficulty . I was expected to follow some clean code and OOPS principles to write the code in this round .
Given an array of integers ARR
and an integer K
, determine the rank of the element ARR[K]
.
The rank of any element in ARR
is defined as the number of elem...
Given an array and an index, find the number of elements smaller than the element at that index appearing before it in the array.
Iterate through the array up to index K and count the number of elements smaller than ARR[K].
Return the count as the rank of ARR[K].
Handle edge cases like empty array or invalid index K.
Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:
1. get(key)
- Return the value of the key if it exists in the cache; otherw...
Design a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraint.
Implement a doubly linked list to maintain the order of recently used keys.
Use a hashmap to store key-value pairs for quick access.
Update the order of keys in the linked list on get and put operations.
Evict the least recently used key when the cache reaches its capacity.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I applied via Naukri.com and was interviewed before Nov 2020. There were 3 interview rounds.
Some of the top questions asked at the Amazon Device Associate interview for experienced candidates -
based on 2 interviews
Interview experience
based on 51 reviews
Rating in categories
Customer Service Associate
4.2k
salaries
| ₹0.6 L/yr - ₹6.8 L/yr |
Transaction Risk Investigator
3.1k
salaries
| ₹2 L/yr - ₹6.1 L/yr |
Associate
2.9k
salaries
| ₹0.8 L/yr - ₹7 L/yr |
Senior Associate
2.5k
salaries
| ₹2 L/yr - ₹10.5 L/yr |
Program Manager
2.2k
salaries
| ₹9 L/yr - ₹37 L/yr |
Flipkart
TCS
Netflix