Premium Employer

i

This company page is being actively managed by Zepto Team. If you also belong to the team, you can get access from here

Zepto Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Zepto Quality Assurance Engineer 3 Interview Questions and Answers

Updated 10 Oct 2024

8 Interview questions

A Quality Assurance Engineer 3 was asked 9mo ago
Q. List some HTTP status codes.
Ans. 

HTTP status codes are standardized codes used to indicate the result of a HTTP request.

  • 1. 2xx - Success: Request was successful (e.g. 200 OK)

  • 2. 3xx - Redirection: Further action needs to be taken (e.g. 301 Moved Permanently)

  • 3. 4xx - Client Error: Request cannot be fulfilled (e.g. 404 Not Found)

  • 4. 5xx - Server Error: Server failed to fulfill a valid request (e.g. 500 Internal Server Error)

A Quality Assurance Engineer 3 was asked 9mo ago
Q. Write an SQL query to update the name of the employee with the third-highest salary.
Ans. 

Update the name of employee with 3rd highest salary in SQL

  • Use a subquery to find the 3rd highest salary

  • Join the subquery with the EMPLOYEE table on salary to get the employee name

  • Use the UPDATE statement to update the name of the employee

Quality Assurance Engineer 3 Interview Questions Asked at Other Companies

asked in Zepto
Q1. How can you check backward compatibility in an API when backend c ... read more
asked in Baazi Games
Q2. What implementations have you done in App automation?
asked in Zepto
Q3. How do you test network latency while testing mobile apps?
asked in Zepto
Q4. Write negative test cases for a cart value not greater than or eq ... read more
asked in Zepto
Q5. In which method is data more secure: GET or POST?
A Quality Assurance Engineer 3 was asked 9mo ago
Q. How do you test network latency while testing mobile apps?
Ans. 

Use network monitoring tools and simulate different network conditions to test network latency in mobile apps.

  • Use network monitoring tools like Wireshark or Charles Proxy to analyze network traffic and identify latency issues.

  • Simulate different network conditions (3G, 4G, WiFi, etc.) using tools like Network Link Conditioner on iOS or Android Emulator on Android.

  • Measure latency by sending requests to a server and ...

A Quality Assurance Engineer 3 was asked 9mo ago
Q. In which method is data more secure: GET or POST?
Ans. 

POST method is more secure than GET method for transmitting sensitive data.

  • POST method sends data in the request body, making it more secure as the data is not visible in the URL.

  • GET method sends data in the URL, which can be visible in browser history, server logs, and can be easily intercepted.

  • POST method is recommended for transmitting sensitive information like passwords, credit card details, etc.

  • GET method is...

A Quality Assurance Engineer 3 was asked 9mo ago
Q. What are the differences between GET, POST, PUT, and PATCH methods?
Ans. 

GET retrieves data, POST submits data, PUT updates data, PATCH partially updates data

  • GET is used to retrieve data from a server

  • POST is used to submit data to a server

  • PUT is used to update existing data on a server

  • PATCH is used to partially update existing data on a server

A Quality Assurance Engineer 3 was asked 9mo ago
Q. What is a RACE condition?
Ans. 

A RACE condition is a situation in which the outcome of a program depends on the order of execution of its components.

  • Occurs in concurrent programming when multiple threads access shared data and the outcome depends on the order of execution

  • Can lead to unpredictable behavior and bugs in the program

  • Example: Two threads trying to increment the same variable simultaneously can result in incorrect values due to race c...

A Quality Assurance Engineer 3 was asked 9mo ago
Q. Write negative test cases for a cart value not greater than or equal to 1000.
Ans. 

Negative testcases for cart value less than 1000

  • Add a product with a price less than 1000 to the cart

  • Remove all products from the cart and check if the total value is less than 1000

  • Add multiple products to the cart but ensure the total value is less than 1000

Are these interview questions helpful?
A Quality Assurance Engineer 3 was asked 9mo ago
Q. How can you check backward compatibility in an API when backend changes are deployed to production?
Ans. 

To check backward compatibility in API after BE changes are deployed on PROD, perform regression testing on existing functionalities.

  • Perform regression testing on existing API functionalities to ensure they still work as expected after BE changes

  • Check if any existing API endpoints have been deprecated or modified due to BE changes

  • Verify if any new API endpoints have been added and test their functionality

  • Ensure th...

Zepto Quality Assurance Engineer 3 Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Write negative testcases for cart value not greater equal to 1000
  • Ans. 

    Negative testcases for cart value less than 1000

    • Add a product with a price less than 1000 to the cart

    • Remove all products from the cart and check if the total value is less than 1000

    • Add multiple products to the cart but ensure the total value is less than 1000

  • Answered by AI
  • Q2. Write HTTP status codes
  • Ans. 

    HTTP status codes are standardized codes used to indicate the result of a HTTP request.

    • 1. 2xx - Success: Request was successful (e.g. 200 OK)

    • 2. 3xx - Redirection: Further action needs to be taken (e.g. 301 Moved Permanently)

    • 3. 4xx - Client Error: Request cannot be fulfilled (e.g. 404 Not Found)

    • 4. 5xx - Server Error: Server failed to fulfill a valid request (e.g. 500 Internal Server Error)

  • Answered by AI
  • Q3. How can you check backward compatibility in API (if BE changes are deployed on PROD)
  • Ans. 

    To check backward compatibility in API after BE changes are deployed on PROD, perform regression testing on existing functionalities.

    • Perform regression testing on existing API functionalities to ensure they still work as expected after BE changes

    • Check if any existing API endpoints have been deprecated or modified due to BE changes

    • Verify if any new API endpoints have been added and test their functionality

    • Ensure that th...

  • Answered by AI
  • Q4. GET, POST, PUT, PATCH difference
  • Ans. 

    GET retrieves data, POST submits data, PUT updates data, PATCH partially updates data

    • GET is used to retrieve data from a server

    • POST is used to submit data to a server

    • PUT is used to update existing data on a server

    • PATCH is used to partially update existing data on a server

  • Answered by AI
  • Q5. How to test netowork latency while testing mobile apps
  • Ans. 

    Use network monitoring tools and simulate different network conditions to test network latency in mobile apps.

    • Use network monitoring tools like Wireshark or Charles Proxy to analyze network traffic and identify latency issues.

    • Simulate different network conditions (3G, 4G, WiFi, etc.) using tools like Network Link Conditioner on iOS or Android Emulator on Android.

    • Measure latency by sending requests to a server and calcu...

  • Answered by AI
  • Q6. In which method data is more secure GET or POST?
  • Ans. 

    POST method is more secure than GET method for transmitting sensitive data.

    • POST method sends data in the request body, making it more secure as the data is not visible in the URL.

    • GET method sends data in the URL, which can be visible in browser history, server logs, and can be easily intercepted.

    • POST method is recommended for transmitting sensitive information like passwords, credit card details, etc.

    • GET method is comm...

  • Answered by AI
  • Q7. SQL: UPDATE the name of EMPLOYEE having 3rd high salary
  • Ans. 

    Update the name of employee with 3rd highest salary in SQL

    • Use a subquery to find the 3rd highest salary

    • Join the subquery with the EMPLOYEE table on salary to get the employee name

    • Use the UPDATE statement to update the name of the employee

  • Answered by AI
  • Q8. Scenario based question
  • Q9. What is RACE condition
  • Ans. 

    A RACE condition is a situation in which the outcome of a program depends on the order of execution of its components.

    • Occurs in concurrent programming when multiple threads access shared data and the outcome depends on the order of execution

    • Can lead to unpredictable behavior and bugs in the program

    • Example: Two threads trying to increment the same variable simultaneously can result in incorrect values due to race condit...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well for mobile app testing questions
API testing
database queries

Skills evaluated in this interview

What people are saying about Zepto

View All
a retention marketing manager
2w
Zepto CRM to IndusInd Bank: Good career move?
Is it a good idea to switch from a CRM role at Zepto (with 1 year of experience) to a campaign manager role at IndusInd Bank? I have 5+ years of overall experience.
Got a question about Zepto?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before May 2016.

Interview Questionnaire 

4 Questions

  • Q1. Tell us about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

    • Experienced in developing web applications using technologies such as HTML, CSS, JavaScript, and React

    • Strong background in computer science with knowledge of data structures and algorithms

    • Proficient in programming languages such as Java, Python, and C++

    • Familiar with Agile development methodolog...

  • Answered by AI
  • Q2. Why Flipkart
  • Ans. 

    Flipkart is a leading e-commerce platform in India with a strong focus on technology and innovation.

    • Flipkart offers a challenging and dynamic work environment for software engineers.

    • The company has a strong reputation for investing in technology and innovation.

    • Flipkart has a large user base and offers opportunities to work on a variety of projects.

    • The company has a strong focus on customer satisfaction and user experie...

  • Answered by AI
  • Q3. Are you comfortable to reallocate
  • Ans. 

    Yes, I am comfortable with reallocating as needed.

    • I am flexible and adaptable to changing circumstances.

    • I have experience working in dynamic environments where priorities can shift.

    • I am willing to take on new challenges and responsibilities as required.

  • Answered by AI
  • Q4. Why should we hire you
  • Ans. 

    I have a strong technical background, excellent problem-solving skills, and a proven track record of delivering high-quality software.

    • Extensive experience in software development, including proficiency in multiple programming languages such as Java, Python, and C++

    • Strong problem-solving skills demonstrated through successful completion of complex projects

    • Proven track record of delivering high-quality software on time a...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 2 problem statements to be coded using any language
Tips: Focussed on string manipulations and enormous data size handling
Duration: 1 hour 30 minutes
Total Questions: 2

Skills: C/C++
College Name: Guru Premsukh Memorial College of Engineering

Quality Assurance Engineer 3 Interview Questions Asked at Other Companies

asked in Zepto
Q1. How can you check backward compatibility in an API when backend c ... read more
asked in Baazi Games
Q2. What implementations have you done in App automation?
asked in Zepto
Q3. How do you test network latency while testing mobile apps?
asked in Zepto
Q4. Write negative test cases for a cart value not greater than or eq ... read more
asked in Zepto
Q5. In which method is data more secure: GET or POST?

I applied via Campus Placement and was interviewed before Dec 2015. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list

    • Iteratively swap the next and previous pointers of each node

    • Use three pointers to keep track of the current, previous, and next nodes

    • Update the head pointer to the last node after reversing

  • Answered by AI
  • Q2. Object Oriented Programming
  • Q3. Database questions
  • Q4. What do you like about this company
  • Ans. 

    I appreciate the company's commitment to innovation and employee development.

    • Strong focus on innovation in software development

    • Opportunities for professional growth and development

    • Positive company culture and work environment

  • Answered by AI
  • Q5. Why do you want to work here
  • Ans. 

    I am impressed by the company's innovative projects and collaborative work environment.

    • Impressed by innovative projects

    • Desire to work in a collaborative environment

    • Excited about potential for growth and learning opportunities

  • Answered by AI
  • Q6. Long term goals

Interview Preparation Tips

Round: Test
Experience: Simple aptitude test where they filtered out 2/3 of the applicants (12-15 selected out of 30)
Duration: 1 hour
Total Questions: 40

Round: Technical Interview
Experience: General questions about you, your projects etc.
The linked list question, you can write in any language you like.
OOP concepts like how it is implemented in your favourite language.

Round: Technical Interview
Experience: Your thoughts on designing a database for a company that aggregates jobs from any available source.
The schema for the database and your reason for it.

Round: HR Interview
Experience: Standard HR questions

College Name: Shiv Nadar University, Dadri

Skills evaluated in this interview

I appeared for an interview in Sep 2016.

Interview Questionnaire 

9 Questions

  • Q1. Questions on DBMS like find the 2nd maximum salary of employee
  • Q2. A table was given and i need Normalize it
  • Ans. 

    Normalization organizes data to reduce redundancy and improve integrity in databases.

    • Identify functional dependencies: Determine which attributes depend on others.

    • First Normal Form (1NF): Ensure all entries in a column are atomic. E.g., split 'Phone Numbers' into separate entries.

    • Second Normal Form (2NF): Remove partial dependencies. E.g., if 'StudentID' determines 'StudentName', separate into a new table.

    • Third Normal ...

  • Answered by AI
  • Q3.  join, groupby queries on a given table
  • Ans. 

    Understanding join and groupby queries is essential for data manipulation in SQL databases.

    • JOIN combines rows from two or more tables based on a related column. Example: SELECT * FROM A JOIN B ON A.id = B.a_id;

    • INNER JOIN returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.a_id;

    • LEFT JOIN returns all records from the left table and matched records from the right table. E...

  • Answered by AI
  • Q4. Question related to Computer Networks like how internet works
  • Q5. What is web server and application server
  • Ans. 

    Web server handles HTTP requests and responses, while application server executes application logic.

    • Web server serves static content like HTML, CSS, JS files

    • Application server executes dynamic code like Java, Python, Ruby

    • Web server communicates with client, application server communicates with database

    • Examples of web servers: Apache, Nginx, IIS

    • Examples of application servers: Tomcat, JBoss, WebSphere

  • Answered by AI
  • Q6. Coding question to print a given pattern
  • Ans. 

    This question involves coding a pattern based on specified rules, typically using loops and conditionals.

    • Identify the pattern structure (e.g., stars, numbers).

    • Use nested loops for rows and columns.

    • Example: For n=3, output could be: * ** ***

    • Consider edge cases like n=0 or negative values.

  • Answered by AI
  • Q7. Proper discussion on my projects that were mentioned in the resume. They usually ask to make class diagram, ER diagram of project etc.
  • Q8. Firstly HR asked to introduce yourself
  • Q9. Then he asked simple questions like why u want to join this company, my family background, asked about hobbies, academic achievements etc

Interview Preparation Tips

Round: Test
Experience: Two coding questions were given in the 1st round
1)find nodes at kth distance from root node
2)arrange a given array in min-max sequence
Duration: 1 hour
Total Questions: 2

College Name: Thapar University, Patiala

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. About database locks and engines

I applied via Referral and was interviewed in May 2020. There were 9 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. IT Solutions provider
  • Q2. Brhamanc IT Information Technology World Asia Pacific region India Tamilnadu Coimbatore 641108
  • Q3. Right now
  • Q4. Salary will have been working on my phone
  • Q5. So Exclusive interview on my phone
  • Q6. The new version of the best of luck
  • Q7. Hdca and Core Java Programming language
  • Q8. For example Infosystem on the best of luck

Interview Preparation Tips

Interview preparation tips for other job seekers - So My question that has been working on the project will be able to get a good day for you again soon be the best of luck

Interview Questionnaire 

1 Question

  • Q1. Questions related to Data Structures like Array, Stack, Queue.. etc., Questions related to Algorithms Like Dynamic Programming and Questions from DBMS.
Are these interview questions helpful?

I applied via Campus Placement and was interviewed in Oct 2019. There were 5 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. Graph Question:- There is a chessboard. It is different from the normal chessboard. White and black blocks can be anywhere. Source and destination block are given. I was asked to find the path with a mini...
  • Q2. Find the sum of k smallest number in a BST.
  • Ans. 

    Find sum of k smallest numbers in a BST.

    • Traverse the BST in-order and add the k smallest numbers to a sum variable.

    • Use a priority queue to keep track of the k smallest numbers.

    • If k is greater than the number of nodes in the BST, return the sum of all nodes.

    • If k is 0, return 0.

  • Answered by AI
  • Q3. System design of BookMyShow. Design the algorithm and database for the seat booking system. How this the system will handle the case when the payment gets failed. Again he asked me to write the query for...
  • Ans. 

    Design algorithm and database for seat booking system of BookMyShow and handle failed payments.

    • Create a database with tables for movies, theaters, seats, bookings, and payments

    • Use a locking mechanism to prevent double booking of seats

    • If payment fails, release the locked seats and notify the user

    • Write a query to get the timestamp in SQL: SELECT CURRENT_TIMESTAMP;

  • Answered by AI
  • Q4. Write the code for the time stamp in C.
  • Ans. 

    Code for time stamp in C

    • Use the time.h header file

    • Call the time() function to get the current time in seconds

    • Convert the time to a string using strftime() function

    • Use the format string to specify the desired format of the time stamp

  • Answered by AI
  • Q5. Write the code for rearranging the array in consecutive pair multiplication. For example consider an array with 10 element A0, A1, A2......A9. The resultant array will be A0*A1, A1*A2, A2*A3, and so on. Th...
  • Ans. 

    Rearrange array in consecutive pair multiplication in descending order.

    • Create a new array to store the multiplied values

    • Use a loop to iterate through the original array and multiply consecutive pairs

    • Write a compare function to sort the new array in descending order

  • Answered by AI
  • Q6. Write the code to rearrange the array in maximum-minimum form.
  • Ans. 

    Code to rearrange an array in maximum-minimum form.

    • Sort the array in descending order.

    • Create a new array and alternate between adding the maximum and minimum values from the sorted array.

    • Return the new array.

    • Time complexity: O(nlogn)

    • Space complexity: O(n)

  • Answered by AI
  • Q7. What is stoi function (stoi() function)? Its uses and code to Implement stoi function.
  • Ans. 

    stoi() function converts a string to an integer.

    • stoi() is a C++ function that takes a string as input and returns an integer.

    • It is used to convert a string of digits into an integer.

    • It can also handle negative numbers and ignore leading whitespace.

    • Example: int num = stoi("123"); // num is now 123

  • Answered by AI
  • Q8. Write code for Longest Common Substring. (time limit for writing this code was 5-6 minutes)
  • Ans. 

    Code for finding the longest common substring in an array of strings.

    • Iterate through the first string and check for all possible substrings

    • Check if the substring is present in all other strings

    • Keep track of the longest common substring found so far

    • Return the longest common substring

  • Answered by AI
  • Q9. Q: What is a Transaction in DBMS and ACID properties? Q: What is Thread and how it is different from the Process? Q: What are some Linux commands. Write any 5 commands? Q: Why sudo is used for commands?...
  • Ans. 

    Answers to common technical questions in a software engineering interview

    • A transaction in DBMS is a sequence of operations that must be treated as a single unit of work. ACID properties ensure reliability and consistency of transactions.

    • A thread is a lightweight process that shares memory and resources with other threads in the same process. A process is a separate instance of a program.

    • Common Linux commands include ls...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about what you speak.

Take your step forward. Try to be firstly interviewed if choice arrives ( They get screwed up at the end and ask questions that the previous candidates failed ).

Before approaching the solution to be clear with edge test-cases. Once you are completely sure then come up with an approach.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Data Structures
  • Q2. Algorithms knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Study DSA and be thorough with projects.

I applied via Job Portal and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Sort an array
  • Ans. 

    Sorts an array of strings in ascending order.

    • Use a sorting algorithm like bubble sort, selection sort, or merge sort.

    • Compare adjacent elements and swap them if they are in the wrong order.

    • Repeat the process until the array is sorted.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good experience overall.

Skills evaluated in this interview

Zepto Interview FAQs

How many rounds are there in Zepto Quality Assurance Engineer 3 interview?
Zepto interview process usually has 1 rounds. The most common rounds in the Zepto interview process are Technical.
What are the top questions asked in Zepto Quality Assurance Engineer 3 interview?

Some of the top questions asked at the Zepto Quality Assurance Engineer 3 interview -

  1. how can you check backward compatibility in API (if BE changes are deployed on ...read more
  2. how to test netowork latency while testing mobile a...read more
  3. write negative testcases for cart value not greater equal to 1...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Hard 100%

Duration

Less than 2 weeks 100%
View more
Join Zepto We’re revolutionizing the way India shops.

Interview Questions from Similar Companies

Flipkart Interview Questions
3.9
 • 1.5k Interviews
Swiggy Interview Questions
3.7
 • 474 Interviews
BigBasket Interview Questions
3.9
 • 400 Interviews
Lenskart Interview Questions
3.2
 • 364 Interviews
CARS24 Interview Questions
3.5
 • 361 Interviews
JustDial Interview Questions
3.5
 • 359 Interviews
Info Edge Interview Questions
3.9
 • 349 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Eternal Limited Interview Questions
3.7
 • 327 Interviews
View all
Zepto Quality Assurance Engineer 3 Salary
based on 5 salaries
₹19.3 L/yr - ₹30 L/yr
29% more than the average Quality Assurance Engineer 3 Salary in India
View more details

Zepto Quality Assurance Engineer 3 Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Shift Incharge
494 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Store Manager
212 salaries
unlock blur

₹3.4 L/yr - ₹7.5 L/yr

Team Lead
205 salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

Senior Manager
169 salaries
unlock blur

₹16 L/yr - ₹27.6 L/yr

Delivery Boy
148 salaries
unlock blur

₹1.8 L/yr - ₹5 L/yr

Explore more salaries
Compare Zepto with

Blinkit

3.8
Compare

Dunzo

3.4
Compare

BigBasket

3.9
Compare

Swiggy

3.7
Compare
write
Share an Interview