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.1k Reviews

Filter interviews by

Amazon Manual Testing Interview Questions and Answers

Updated 30 Apr 2021

Amazon Manual Testing Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Testing methods
  • Q2. Bug life cycle
  • Q3. STLC

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident , prepare before , and be honest

Interview questions from similar companies

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
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

3 questions of dsa
1 of api

Round 2 - Technical 

(1 Question)

  • Q1. Graph based question to find the shortest path between 2 prime numbers by changing 1 digit at once and obtained number should be prime too.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Thoroughly dsa foe 1st round
For 2nd round there was low level design
But I couldn't get to the 2nd round
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 - Technical 

(2 Questions)

  • Q1. Find the leaves of the tree.
  • Ans. 

    Leaves of a tree are the nodes with no children in a tree data structure.

    • Traverse the tree and identify nodes with no children.

    • Use depth-first search or breadth-first search algorithms to find leaves.

    • Examples: In a binary tree, leaves are nodes with no left or right child.

    • In a general tree, leaves are nodes with no children in their child list.

  • Answered by AI
  • Q2. Find the LCA of tree.
  • Ans. 

    The Lowest Common Ancestor (LCA) of a tree is the shared ancestor of two nodes farthest from the root.

    • Start from the root and traverse the tree to find the paths from the root to the two nodes.

    • Compare the paths to find the last common node between them, which is the LCA.

    • If one of the nodes is an ancestor of the other, then the ancestor node is the LCA.

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What projects you worked upon?
  • Ans. 

    I have worked on projects involving web development, mobile app development, and data analysis.

    • Developed a web application using React and Node.js for a client in the e-commerce industry

    • Created a mobile app using Flutter for a startup in the healthcare sector

    • Performed data analysis on customer behavior using Python and SQL for a marketing company

  • Answered by AI
  • Q2. What internships you did?
  • Ans. 

    I completed internships at ABC Company and XYZ Company during my undergraduate studies.

    • Interned at ABC Company working on web development projects

    • Interned at XYZ Company assisting with software testing and quality assurance

    • Gained hands-on experience in coding, debugging, and problem-solving

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare tree and graph well.

Skills evaluated in this interview

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
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Got a leetcode easy question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare leetcode easy thoroughly
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2023. There were 4 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 

If the cost price of an item is Rs. 150 and the selling price is Rs. 200, what is the profit percentage?

Round 3 - Technical 

(3 Questions)

  • Q1. What is the difference between a stack and a queue? Give an example where you would use each.
  • Ans. 

    A stack is a LIFO data structure while a queue is a FIFO data structure.

    • Stack: Last In First Out (LIFO), used in undo/redo functionality, backtracking, and recursion.

    • Queue: First In First Out (FIFO), used in job scheduling, breadth-first search, and printing.

    • Stack uses push() and pop() operations while queue uses enqueue() and dequeue() operations.

  • Answered by AI
  • Q2. What is the difference between a compiler and an interpreter?
  • Ans. 

    A compiler translates the entire program into machine code before execution, while an interpreter translates and executes the program line by line.

    • A compiler converts the source code into an executable file, while an interpreter executes the code directly.

    • Compilers typically produce faster and more efficient code, while interpreters provide faster development and debugging.

    • Examples of compilers include GCC, Clang, and ...

  • Answered by AI
  • Q3. A compiler is a program that translates the entire source code into machine code before executing it. The source code is fed into the compiler, which analyzes and translates it into an executable file. Thi...
Round 4 - HR 

(1 Question)

  • Q1. How do you handle stress and pressure?
  • Ans. 

    I handle stress and pressure by practicing time management, seeking support from colleagues, and maintaining a healthy work-life balance.

    • I prioritize tasks and create a schedule to manage my time effectively.

    • I communicate with my team and seek their assistance or guidance when needed.

    • I engage in stress-relieving activities outside of work, such as exercising or spending time with loved ones.

    • I practice mindfulness and d...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for AmbitionBox Software Engineer interview:
  • Technical
  • Problem Solving
  • Communication Skills
Interview preparation tips for other job seekers - Ask questions: During the interview, ask thoughtful questions about the company, the job, and the team you would be working with. This shows that you are interested and engaged in the opportunity, and can also give you valuable information to help you decide if the job is a good fit for you.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Online assessment, leet code easy

Round 2 - Coding Test 

Live coding assessment, leet code medium

Round 3 - Aptitude Test 

Behavioral asking on past experience

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

What are the top questions asked in Amazon Manual Testing interview?

Some of the top questions asked at the Amazon Manual Testing interview -

  1. testing meth...read more
  2. bug life cy...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Amazon interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

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
 • 744 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
 • 166 Interviews
Uber Interview Questions
4.2
 • 155 Interviews
AmbitionBox Interview Questions
5.0
 • 144 Interviews
JioMart Interview Questions
3.9
 • 92 Interviews
View all
Amazon Manual Testing Salary
based on 5 salaries
₹2.5 L/yr - ₹4.2 L/yr
35% less than the average Manual Testing Salary in India
View more details
Customer Service Associate
4.2k salaries
unlock blur

₹0.6 L/yr - ₹5 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.8 L/yr

Senior Associate
2.4k salaries
unlock blur

₹2 L/yr - ₹10.1 L/yr

Software Development Engineer
2k salaries
unlock blur

₹19.1 L/yr - ₹33 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