i
Amazon
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by
I appeared for an interview in Feb 2025, where I was asked the following questions.
My future goals include advancing my skills in digital marketing, leading innovative campaigns, and contributing to impactful projects.
Enhance my expertise in SEO and SEM to drive organic traffic and improve conversion rates.
Lead a team to develop creative marketing strategies that resonate with target audiences, like a successful social media campaign.
Stay updated with the latest trends in digital marketing, such as A...
Dynamic Online Marketing Executive with a passion for driving brand growth through innovative digital strategies and data-driven insights.
Background: I hold a degree in Marketing from XYZ University, where I developed a strong foundation in digital marketing principles.
Experience: I have over 3 years of experience in online marketing, working with brands like ABC Corp, where I increased their social media engagement by...
My area of expertise lies in digital marketing strategies, focusing on SEO, content marketing, and social media engagement.
SEO: Optimizing website content to rank higher on search engines, e.g., using keywords effectively.
Content Marketing: Creating valuable content to attract and engage target audiences, like blogs and infographics.
Social Media: Managing brand presence on platforms like Facebook and Instagram to drive
Yes, I have relevant work experience in online marketing, focusing on digital campaigns and social media strategies.
Managed social media accounts for a local business, increasing engagement by 40% over six months.
Developed and executed email marketing campaigns that resulted in a 25% increase in open rates.
Conducted SEO audits and implemented strategies that improved website traffic by 30% within three months.
Collabora...
I possess strong working skills, including effective communication, time management, and adaptability in fast-paced environments.
Excellent communication skills: I effectively convey ideas and collaborate with team members.
Strong time management: I prioritize tasks to meet deadlines, as demonstrated in my previous role where I managed multiple campaigns simultaneously.
Adaptability: I quickly adjust to new tools and stra...
I am looking for a competitive salary that reflects my skills and experience in online marketing.
Based on my research, the average salary for this role in our region is between $50,000 and $70,000.
Considering my 3 years of experience in digital marketing and proven results in increasing ROI, I believe a salary of $60,000 is fair.
I am open to discussing the full compensation package, including benefits and bonuses, as t
My name is Alex Johnson, a passionate online marketing executive with a knack for digital strategies and creative campaigns.
I have over 5 years of experience in digital marketing.
I specialize in SEO and content marketing, helping brands improve their online visibility.
I have successfully managed social media campaigns that increased engagement by 30%.
I enjoy analyzing data to optimize marketing strategies and drive con
I have diverse experience in online marketing, including social media management, SEO, and content creation.
Managed social media accounts for a local business, increasing engagement by 40% over six months.
Conducted SEO audits and implemented strategies that improved website traffic by 30%.
Created and executed email marketing campaigns that achieved a 25% open rate and 10% click-through rate.
Collaborated with cross-func...
I applied via Naukri.com and was interviewed in Aug 2023. There were 2 interview rounds.
Strength is the ability to overcome challenges and obstacles, both physically and mentally.
Physical strength is the ability to exert force and lift heavy objects.
Mental strength involves resilience, determination, and the ability to stay focused under pressure.
Strength can also refer to emotional resilience and the ability to cope with difficult situations.
Strength can be developed through training, practice, and facin
My short term goal is to increase website traffic by 20% within the next 6 months through targeted online marketing strategies.
Implement SEO best practices to improve search engine rankings
Create engaging content for social media platforms to drive traffic
Utilize email marketing campaigns to reach out to potential customers
Collaborate with influencers to expand brand reach
it's best company and dream job
Yes it best job and good opportunity for me
I applied via LinkedIn and was interviewed in Jul 2023. There were 3 interview rounds.
Everyone in the group will prepare their own thoughts on how to do this work.
Through the test, we can improve the work by recognizing our experience.
What people are saying about Amazon
I applied via Approached by Company and was interviewed before Apr 2022. There were 8 interview rounds.
This is literally a live coding test. For analytics expect SQL, python, R.
I applied via Company Website and was interviewed in Sep 2023. There were 2 interview rounds.
Implement an iterator to flatten 2D vector
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
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
It was a medium-level DSA round
This was also a DSA round
This again a DSA round
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.
I applied via Referral and was interviewed before Nov 2020. There was 1 interview round.
based on 4 interviews
Interview experience
based on 4 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 - ₹36.7 L/yr |
Flipkart
TCS
Netflix