i
Amazon
Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards
Filter interviews by
I appeared for an interview in Jan 2025.
My current priorities include providing support to vulnerable populations, advocating for social justice, and continuing professional development.
Providing support to vulnerable populations through counseling, resources, and advocacy
Advocating for social justice by addressing systemic inequalities and promoting equality
Continuing professional development through training, workshops, and staying updated on best practice...
My greatest achievement was successfully advocating for a child to be placed in a safe and loving foster home.
Successfully advocating for a child in need
Ensuring the child was placed in a safe and loving foster home
Making a positive impact on the child's life
I had to quickly change the approach to a client's case due to new information
Received new information about a client's background and needs
Had to adjust treatment plan and resources accordingly
Communicated changes to team members and supervisors
Ensured client's well-being and progress were not compromised
I use active listening, clear language, and visual aids to engage the audience and ensure understanding.
Maintain eye contact and use positive body language to show confidence and connection with the audience
Speak clearly and concisely, avoiding jargon or technical language that may confuse the audience
Use visual aids such as slides or handouts to reinforce key points and keep the audience engaged
Encourage participation...
Assignment refers to the transfer of some or all property rights and obligations associated with an asset property contract or other asset of value
I am most afraid of failing to make a positive impact on the lives of my clients.
Fear of not being able to help those in need
Fear of not being able to provide adequate support and resources
Fear of not being able to make a lasting positive impact
Fear of not being able to effectively communicate and connect with clients
I would rather people perceive me as kind, as kindness is a quality that truly matters in making a positive impact on others.
Kindness is a trait that fosters positive relationships and creates a supportive environment.
Being perceived as kind can lead to trust and respect from others.
Kindness can have a lasting impact on individuals and communities.
Examples: Helping a colleague in need, volunteering at a local charity, ...
I am most thankful for the opportunity to make a positive impact in the lives of others through my work as a social worker.
Gratitude for the ability to help those in need
Appreciation for the relationships built with clients and colleagues
Thankful for the personal growth and learning experiences gained through my work
My perfect day would involve spending time outdoors, helping others, and ending with quality time with loved ones.
Starting the day with a peaceful morning walk in nature
Volunteering at a local community organization to make a positive impact
Having a meaningful conversation with a client and seeing them make progress
Ending the day with a home-cooked meal shared with family and friends
Assignment refers to the transfer of some or all property rights and obligations associated with an asset, property, contract,or other asset of value
I faced a difficult problem when a client's safety was at risk due to domestic violence
Client disclosed experiencing domestic violence at home
Collaborated with law enforcement and other agencies to ensure client's safety
Provided emotional support and resources for client to leave the abusive situation
I had to make a difficult decision when deciding whether to remove a child from an unsafe home environment.
Received reports of neglect and abuse in the child's home
Consulted with colleagues and supervisors for guidance
Ultimately decided to remove the child for their safety
Strengths include empathy, communication skills, and problem-solving abilities. Weaknesses may include difficulty setting boundaries and managing stress.
Strength: Strong empathy for clients, ability to communicate effectively with diverse populations
Strength: Skilled in problem-solving and finding creative solutions to complex issues
Weakness: Struggle with setting boundaries with clients and maintaining a healthy work-...
I plan to contribute to the team's success by bringing my experience in case management, crisis intervention, and client advocacy.
Utilizing my strong communication skills to collaborate effectively with team members
Drawing on my experience in developing and implementing treatment plans for clients
Providing support and guidance to colleagues based on my knowledge of community resources
Actively participating in team meet...
I am actively addressing them by networking, customizing my resume, and applying to relevant job postings.
Networking with professionals in the field to learn about job opportunities
Customizing my resume and cover letter for each application to highlight relevant experience
Applying to job postings that align with my skills and interests
I carefully considered all factors, consulted with colleagues, and ultimately made the decision that aligned with ethical guidelines and best interests of clients.
Gathered all relevant information and perspectives before making a decision
Consulted with colleagues or supervisors for input and advice
Considered ethical guidelines and professional standards in decision-making
Communicated the decision clearly and transparen...
I appeared for an interview in Mar 2025, where I was asked the following questions.
Social work involves various elements aimed at improving individual and community well-being through support and advocacy.
Empathy: Understanding clients' feelings and perspectives, e.g., listening to a child's concerns about family issues.
Advocacy: Representing clients' needs, such as helping a homeless person access shelter services.
Assessment: Evaluating clients' situations to identify needs, like assessing a family'...
Social work focuses on enhancing well-being, advocating for social justice, and empowering individuals and communities.
Empowerment: Helping clients gain control over their lives, such as assisting a single mother in finding stable employment.
Advocacy: Representing marginalized groups, like advocating for the rights of homeless individuals to access housing.
Holistic Approach: Addressing mental, emotional, and social nee...
I applied via AmbitionBox and was interviewed in Jul 2023. There were 3 interview rounds.
Int main(){
cout<< ''hello warld'':
return {};
In general ,aptitude tests measure test measure one's competence in logical reasoning numerical skills or verbal ability
I applied via Recruitment Consulltant and was interviewed in Jun 2022. There were 2 interview rounds.
What people are saying about Amazon
I applied via Recruitment Consulltant and was interviewed in Mar 2022. There were 2 interview rounds.
I am pavani thank u for wonderful opportunity i prove my talent in ur company
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 appeared for an interview before Dec 2020.
Round duration - 60 Minutes
Round difficulty - Medium
This was a Data Structures and Algorithms round with preety good questions . I was expected to come up with an efficient approach and code it as well .
Your house is located at the origin (0,0) of a 2-D plane. There are N
neighbors living at different points on the plane. Your goal is to visit exactly K
neighb...
Find the K closest points to the origin in a 2-D plane using Euclidean Distance.
Calculate the Euclidean Distance of each point from the origin
Sort the points based on their distances
Return the first K points as the closest neighbors
Given a sorted array of 'N' integers, your task is to generate the power set for this array. Each subset of this power set should be individually sorted.
A power set of a set 'ARR' i...
Generate the power set of a sorted array of integers with individually sorted subsets.
Use recursion to generate all possible subsets by including or excluding each element in the array.
Sort each subset before adding it to the power set.
Handle base cases for empty array and single element array.
Ensure the subsets are unique by using a set data structure.
Time complexity can be exponential due to the nature of generating ...
Round duration - 50 Minutes
Round difficulty - Hard
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 .
Convert a string representing a Roman numeral into its integer equivalent and return the result.
Roman numerals are represented by seven different symbol...
Convert a Roman numeral string to its integer equivalent.
Create a mapping of Roman numeral symbols to their integer values.
Iterate through the input string and add the corresponding integer values.
Handle cases where subtraction is needed (e.g., IV = 4, IX = 9).
You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.
Find pairs of elements in an array that sum up to a given value, sorted in a specific order.
Iterate through the array and for each element, check if the complement (S - current element) exists in a hash set.
If the complement exists, add the pair to the result list.
Sort the result list based on the criteria mentioned in the question.
Return the sorted list of pairs.
Round duration - 50 Minutes
Round difficulty - Medium
This was also a DSA round with 2 questions . One was implementation heavy and the other was related to recursion and so I handled it carefully so that my code does not run into TLE or Segmentation Fault.
You are provided with a string expression
consisting of characters '+', '-', '*', '/', '(', ')' and digits '0' to '9', representing an arithmetic express...
Evaluate arithmetic expressions in infix notation with given operators and precedence rules.
Parse the infix expression to postfix using a stack.
Evaluate the postfix expression using a stack.
Handle operator precedence and parentheses while evaluating.
Ensure no division by zero cases and operands fit in 32-bit integer.
You are given a sorted integer array ARR
of size N
. Your task is to remove the duplicates in such a way that each element appears only once. The outpu...
Remove duplicates from a sorted array in-place with O(1) extra memory.
Use two pointers - one for iterating through the array and another for placing unique elements.
Compare current element with next element to identify duplicates and skip them.
Update array in-place by moving unique elements to the front.
Return the length of the array after removal of duplicates.
Round duration - 50 Minutes
Round difficulty - Medium
This was a typical System Design round where I was asked about the various features of Facebook and what sort of data structures and algorithms are used in implementing them .
Facebook stores likes and dislikes using a combination of databases and algorithms.
Likes and dislikes are stored in databases such as MySQL or Cassandra.
Algorithms are used to analyze user behavior and recommend content based on likes and dislikes.
User interactions with posts, pages, and ads are tracked to determine likes and dislikes.
Likes and dislikes may also be used to personalize the user's feed and target ads mor...
Facebook implements graph search using a graph database to efficiently search for connections between users and their interests.
Facebook uses a graph database to store connections between users, pages, groups, etc.
The graph search algorithm traverses the graph to find relevant connections based on user queries.
It takes into account factors like user relationships, interests, and interactions to provide personalized sea...
Round duration - 50 Minutes
Round difficulty - Medium
This was a preety intense round as I was grilled more on my System Design concepts but eventually I was able to asnwers all the questions with some help from the interviewer.
Hadoop is a framework for distributed storage and processing of large data sets.
Hadoop is used for storing and processing big data across a distributed network of computers.
It is based on the MapReduce programming model, which allows for parallel processing of data.
Hadoop consists of HDFS for storage and YARN for resource management.
It is used for tasks like data warehousing, log processing, recommendation systems, and...
Facebook Chat works by using a combination of websockets, long polling, and push technology to deliver real-time messaging.
Facebook Chat uses websockets for real-time communication between the client and server.
Long polling is used to check for new messages when websockets are not supported.
Push technology is used to notify users of new messages even when the chat window is not open.
Messages are stored in a database an...
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.
Solution to performing operations on a large array of bits.
Use bitwise operators to perform operations on individual bits
Use a loop to iterate through the array and perform the operations
Ensure that the array is large enough to accommodate all the bits
Consider using a data structure like a bitset for efficient bit manipulation
I appeared for an interview before Mar 2021.
Round duration - 60 minutes
Round difficulty - Easy
In first round they asked me 2 coding questions where he asked me to code as close as possible to the actual one.
Ninja is tasked with merging two given sorted integer arrays ARR1
and ARR2
of sizes 'M' and 'N', respectively, such that the merged result is a single sorted array w...
Merge two sorted arrays into one sorted array in place.
Use two pointers to compare elements from both arrays and place them in the correct position in ARR1.
Start from the end of ARR1 and compare elements from both arrays, placing the larger element at the end of ARR1.
Continue this process until all elements from ARR2 are merged into ARR1.
Given a document represented as an array/list ARR
of words with length N
, find the smallest distance between two given words for multiple queries. The distance is defined as the ...
Find the smallest distance between two words in a document for multiple queries.
Iterate through the document array to find the indices of the two words in each query.
Calculate the absolute difference between the indices to get the distance.
If a word from the query is not present in the document, return the length of the document array.
Repeat the process for each query and output the smallest distance for each.
Round duration - 60 minutes
Round difficulty - Easy
Then in the second round they asked a little about tree and told me to code 2 codes.
Given a binary tree of integers, return the level order traversal of the binary tree.
The first line contains an integer 'T', representing the number of te...
The problem requires implementing a function to return the level order traversal of a binary tree.
Implement a function that takes the root of the binary tree as input and returns the level order traversal of the tree.
Use a queue data structure to perform level order traversal.
Process each level of the tree one by one, starting from the root node.
Print the node values at each level in the order they appear from left to ...
Given an array of distinct positive integers ARR
and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be c...
Find all unique combinations in an array where the sum is equal to a given target sum, with elements in non-decreasing order.
Use backtracking to generate all possible combinations.
Sort the array to ensure elements are in non-decreasing order.
Track the current combination and sum while backtracking.
Terminate recursion when the sum equals the target sum.
Avoid duplicates by skipping elements that have been used in previou...
Round duration - 30 minutes
Round difficulty - Easy
HR round with typical behavioral problems.
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.
based on 10 interview experiences
Difficulty level
Duration
based on 23 reviews
Rating in categories
Customer Service Associate
4k
salaries
| ₹1.8 L/yr - ₹5 L/yr |
Associate
3.1k
salaries
| ₹2 L/yr - ₹5.5 L/yr |
Transaction Risk Investigator
3.1k
salaries
| ₹2.9 L/yr - ₹6.5 L/yr |
Senior Associate
2.7k
salaries
| ₹4 L/yr - ₹9.1 L/yr |
Software Engineer
2.3k
salaries
| ₹24.8 L/yr - ₹51.4 L/yr |
Flipkart
TCS
Netflix