i
Zepto
Work with us
Filter interviews by
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)
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
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 ...
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...
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 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...
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
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...
I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.
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
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)
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...
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
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...
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...
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
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...
What people are saying about Zepto
I appeared for an interview before May 2016.
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...
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...
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.
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...
I applied via Campus Placement and was interviewed before Dec 2015. There were 5 interview rounds.
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
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
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
I appeared for an interview in Sep 2016.
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 ...
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...
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
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.
I applied via Referral and was interviewed in May 2020. There were 9 interview rounds.
I applied via Campus Placement and was interviewed in Oct 2019. There were 5 interview rounds.
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.
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;
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
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
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)
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
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
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...
I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.
I applied via Job Portal and was interviewed in Jun 2021. There were 3 interview rounds.
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.
Some of the top questions asked at the Zepto Quality Assurance Engineer 3 interview -
based on 1 interview experience
Difficulty level
Duration
based on 1 review
Rating in categories
Shift Incharge
494
salaries
| ₹2 L/yr - ₹4.5 L/yr |
Store Manager
212
salaries
| ₹3.4 L/yr - ₹7.5 L/yr |
Team Lead
205
salaries
| ₹2.8 L/yr - ₹8 L/yr |
Senior Manager
169
salaries
| ₹16 L/yr - ₹27.6 L/yr |
Delivery Boy
148
salaries
| ₹1.8 L/yr - ₹5 L/yr |
Blinkit
Dunzo
BigBasket
Swiggy