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 Softwaretest Engineer Interview Questions and Answers

Updated 18 Nov 2024

Amazon Softwaretest Engineer Interview Experiences

8 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Design Parking - at C# ~ hour

Interview Preparation Tips

Interview preparation tips for other job seekers - learn design, take one day free for all interviews
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Sliding Window and Dynamic Programming questions

Softwaretest Engineer Interview Questions Asked at Other Companies

asked in Playablo
Q1. What is boundary value analysis? How do u perform boundary value ... read more
asked in Playablo
Q2. If u get a blocker defect just the previous day of ur release dat ... read more
Q3. 1. What is STLC, SDLC 2. What is the bug Life cycle. 3. Differenc ... read more
Q4. - Print the frequency of each alphabet for the given string. - Sw ... read more
asked in Playablo
Q5. Write Sql query for displaying total number of students from chil ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Very easy question over online platform

Round 2 - Technical 

(2 Questions)

  • Q1. I don't remember
  • Q2. Explain the project you have been working on
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Be Confident, clear fundamentals, Stepwise Explanation with your actual experience with the technology or project

Amazon interview questions for designations

 Software Engineer

 (79)

 Data Engineer

 (22)

 QA Engineer

 (15)

 Devops Engineer

 (6)

 System Engineer

 (4)

 Test Engineer

 (4)

 Principal Engineer

 (3)

 Security Engineer

 (2)

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

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

Round 1 - Coding Test 

2 medium/hard level algorithm questions

Interview Preparation Tips

Interview preparation tips for other job seekers - get very familiar with lite code and hacker ranks challenges and you should be good
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Best leadership principle
  • Q2. Work experience
Round 2 - Coding Test 

Leetcode medium - given an array of words, determine how many

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

I applied via Referral and was interviewed in Mar 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 - Coding Test 

The first round is OA and the majority questions are from leet code or similar

Round 3 - One-on-one 

(2 Questions)

  • Q1. Second round is one to one and be ready for coding as well as some behavioural
  • Q2. Leet code questions of easy to medium level
Round 4 - One-on-one 

(3 Questions)

  • Q1. The third round is also same as second and sometimes they go for 3rd also
  • Q2. Leet code of medium level
  • Ans. 

    Find the longest substring with at most k distinct characters.

    • Use a sliding window approach to keep track of the distinct characters in the substring.

    • Keep track of the start and end indices of the current substring.

    • Update the start index of the substring when the number of distinct characters exceeds k.

    • Update the end index of the substring and the length of the longest substring when a new longest substring is found.

  • Answered by AI
  • Q3. Explain an indecent when you failed in your task

Interview Preparation Tips

Interview preparation tips for other job seekers - Just do leet code and sharpen your understanding for DSA

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Feb 2023. There were 4 interview rounds.

Round 1 - Coding Test 

2 da questions based on maps and set

Round 2 - Coding Test 

2 questions again on graph and dp

Round 3 - HR 

(1 Question)

  • Q1. Design big basket service
  • Ans. 

    Design a service for online grocery shopping with a wide range of products and delivery options.

    • Create a user-friendly website or app for customers to browse and order groceries

    • Implement a secure payment gateway for online transactions

    • Integrate a robust inventory management system to track products and availability

    • Offer various delivery options such as express delivery or scheduled delivery

    • Provide customer support for

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Bar raiser and one graph question

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 Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Test contains 26 questions for me 13 are java based 13 are c++ based

Round 2 - Technical 

(2 Questions)

  • Q1. Indexing in dbms
  • Ans. 

    Indexing in DBMS is a technique to improve the performance of queries by creating a data structure that allows for faster retrieval of data.

    • Indexes are created on columns in a database table to speed up the retrieval of rows that match a certain condition.

    • Types of indexes include clustered, non-clustered, unique, and composite indexes.

    • Examples of indexing techniques include B-tree, hash, and bitmap indexes.

    • Indexing can...

  • Answered by AI
  • Q2. Find whether two strings are or not anagrams
  • Ans. 

    Check if two strings are anagrams by comparing the sorted characters in each string.

    • Sort the characters in both strings and compare if they are equal.

    • Ignore spaces and punctuation when comparing the strings.

    • Example: 'listen' and 'silent' are anagrams.

    • Example: 'hello' and 'world' are not anagrams.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Inorder traversal without recursion
  • Ans. 

    Use a stack to simulate the recursive inorder traversal process

    • Create an empty stack to store nodes

    • Start with the root node and push it onto the stack

    • While the stack is not empty, keep traversing left and pushing nodes onto the stack

    • Once you reach a leaf node, pop it from the stack, print its value, and move to its right child

    • Repeat the process until all nodes have been visited

  • Answered by AI
  • Q2. How to make a class final
  • Ans. 

    To make a class final, use the 'final' keyword in the class declaration.

    • Use the 'final' keyword before the 'class' keyword in the class declaration

    • A final class cannot be subclassed or extended

    • Final classes are often used for utility classes or classes that should not be modified

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Online test on hacker rank . difficult level

Round 2 - Assignment 

Assignmemt on sorting array

Amazon Interview FAQs

How many rounds are there in Amazon Softwaretest Engineer interview?
Amazon interview process usually has 2-3 rounds. The most common rounds in the Amazon interview process are Coding Test, One-on-one Round and HR.
What are the top questions asked in Amazon Softwaretest Engineer interview?

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

  1. Leet code of medium le...read more
  2. Design big basket serv...read more
  3. Second round is one to one and be ready for coding as well as some behaviou...read more

Tell us how to improve this page.

Amazon Softwaretest Engineer Interview Process

based on 6 interviews in last 1 year

1 Interview rounds

  • Coding Test Round
View more

People are getting interviews through

based on 4 Amazon interviews
Company Website
Job Portal
Referral
25%
25%
25%
25% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient 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
 • 751 Interviews
Tata Group Interview Questions
4.2
 • 357 Interviews
BigBasket Interview Questions
3.9
 • 345 Interviews
Myntra Interview Questions
4.0
 • 208 Interviews
Blinkit Interview Questions
3.7
 • 169 Interviews
Uber Interview Questions
4.2
 • 159 Interviews
AmbitionBox Interview Questions
5.0
 • 144 Interviews
JioMart Interview Questions
3.9
 • 92 Interviews
View all
Amazon Softwaretest Engineer Salary
based on 236 salaries
₹1.2 L/yr - ₹10.4 L/yr
7% more than the average Softwaretest Engineer Salary in India
View more details

Amazon Softwaretest Engineer Reviews and Ratings

based on 34 reviews

3.7/5

Rating in categories

3.8

Skill development

3.4

Work-Life balance

4.3

Salary & Benefits

3.5

Job Security

3.7

Company culture

3.8

Promotions/Appraisal

3.7

Work Satisfaction

Explore 34 Reviews and Ratings
Customer Service Associate
4.1k salaries
unlock blur

₹0.6 L/yr - ₹6 L/yr

Transaction Risk Investigator
3.1k salaries
unlock blur

₹2.3 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

₹16.1 L/yr - ₹33.2 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