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

Updated 2 Jul 2025
Popular Designations

151 Interview questions

A Shift Incharge was asked 2w ago
Q. How do you ensure the floor and surrounding areas are hygienic?
Ans. 

Maintaining a hygienic floor involves regular cleaning, sanitizing, and proper waste management to ensure a safe environment.

  • Sweep or vacuum the floor daily to remove dust and debris.

  • Mop the floor with a disinfectant solution at least once a week.

  • Use color-coded mops and cloths to prevent cross-contamination.

  • Ensure spills are cleaned immediately to prevent slips and bacteria growth.

  • Implement a regular schedule for...

View all Shift Incharge interview questions
A Shift Incharge was asked 2w ago
Q. How do you handle shift handover?
Ans. 

Effective shift handover ensures continuity, safety, and efficiency in operations by sharing critical information between shifts.

  • Prepare a detailed handover report summarizing key activities, incidents, and pending tasks.

  • Conduct a face-to-face meeting with the incoming shift to discuss any critical issues or changes.

  • Use a standardized checklist to ensure all important information is covered, such as equipment stat...

View all Shift Incharge interview questions
A Shift Incharge was asked 2w ago
Q. How can you explain inventory management?
Ans. 

Inventory sets are organized collections of items for efficient tracking and management in various sectors.

  • Define inventory set: A group of related items managed together, like a set of tools or medical supplies.

  • Importance: Helps in tracking stock levels, reducing waste, and ensuring availability.

  • Example: A restaurant's inventory set may include all kitchen utensils, ingredients, and equipment.

  • Management tools: Us...

View all Shift Incharge interview questions
🔥 Asked by recruiter 2 times
A Senior Cluster Manager was asked 2w ago
Q. How do you manage inventory?
Ans. 

Effective inventory management ensures optimal stock levels, reduces costs, and enhances operational efficiency.

  • Implement an inventory management system to track stock levels in real-time.

  • Use ABC analysis to categorize inventory based on importance and value.

  • Establish reorder points to prevent stockouts and overstock situations.

  • Conduct regular audits to ensure accuracy and identify discrepancies.

  • Utilize just-in-ti...

View all Senior Cluster Manager interview questions
A Shift Supervisor was asked 3w ago
Q. What strategies can be implemented to generate profits?
Ans. 

Implementing effective strategies can significantly boost profits through cost management, sales enhancement, and customer engagement.

  • Optimize operational efficiency by streamlining processes, reducing waste, and improving productivity. For example, adopting lean management techniques.

  • Enhance sales through targeted marketing campaigns and promotions. For instance, using social media ads to reach a specific demogra...

View all Shift Supervisor interview questions
A Shift Supervisor was asked 3w ago
Q. What is the main motto?
Ans. 

The main motto emphasizes teamwork, efficiency, and customer satisfaction to drive success in our operations.

  • Teamwork: Collaborating effectively with team members to achieve common goals.

  • Efficiency: Streamlining processes to maximize productivity, such as reducing wait times.

  • Customer Satisfaction: Prioritizing customer needs and feedback to enhance service quality.

View all Shift Supervisor interview questions
A Software Engineer was asked 1mo ago
Q. Describe your approach to designing an automotive checkout app.
Ans. 

A user-friendly automotive checkout app for seamless vehicle purchasing and financing.

  • User Authentication: Allow users to create accounts or log in via social media.

  • Vehicle Selection: Provide a searchable database of vehicles with filters (e.g., make, model, price).

  • Detailed Listings: Each vehicle should have high-quality images, specifications, and history reports.

  • Financing Options: Integrate financing calculators...

View all Software Engineer interview questions
Are these interview questions helpful?
A Software Engineer was asked 1mo ago
Q. What changes would you make to our current app?
Ans. 

I would enhance user experience, improve performance, and add new features based on user feedback.

  • Improve user interface for better navigation, e.g., simplify menu structure.

  • Optimize loading times by reducing image sizes and using lazy loading.

  • Add a dark mode option for better accessibility in low-light environments.

  • Implement user feedback mechanisms to gather insights for future updates.

  • Enhance security features,...

View all Software Engineer interview questions
A Store Incharge and Supervisor was asked 2mo ago
Q. You might be asked to design a bidding system, a delivery system, or other components related to Zepto's business.
Ans. 

Designing a bidding and delivery system for Zepto to enhance efficiency and customer satisfaction.

  • Implement a real-time bidding system for delivery slots, allowing customers to choose based on urgency.

  • Utilize machine learning algorithms to predict demand and optimize delivery routes, reducing wait times.

  • Incorporate a user-friendly app interface for customers to track their orders and receive notifications.

  • Establis...

View all Store Incharge and Supervisor interview questions
A Retail Pharmacist was asked 2mo ago
Q. Tell me about a medicine that you know.
Ans. 

Ibuprofen is a nonsteroidal anti-inflammatory drug (NSAID) used to relieve pain, reduce inflammation, and lower fever.

  • Commonly used for headaches, muscle aches, arthritis, and menstrual cramps.

  • Available over-the-counter in various forms: tablets, capsules, and liquid.

  • Works by inhibiting enzymes involved in the production of prostaglandins, which cause inflammation and pain.

  • Dosage for adults typically ranges from 2...

View all Retail Pharmacist interview questions

Zepto Interview Experiences

296 interviews 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

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. 4 Rounds: Round 1 DSA: Medium Level Questions on two pointer algo and Graphs. Round 2 LLD: - Design Game Matching System like CS:Go or Valorant Round 3 HM: - Managerial Questions on experience and resume R...
  • Q2. Think thrice before joining such work culture. Managers yell at Developers and what not I have heard from my friend working at Zepto. Be carefull of what you join just by looking at fancy salaries.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do contact developers at Zepto to ask their honest reviews before joining.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jan 2025.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Breakdown of a product you have built
  • Ans. 

    Developed a mobile app for tracking fitness goals

    • Researched user needs and preferences

    • Designed user-friendly interface for easy navigation

    • Implemented features such as goal setting, progress tracking, and workout logging

    • Collaborated with developers and testers to ensure smooth functionality

    • Received positive feedback from users on app store reviews

  • Answered by AI
  • Q2. How will you increase AOV of Zepto
  • Ans. 

    To increase AOV of Zepto, I will implement upselling and cross-selling strategies, offer bundle deals, and personalize recommendations.

    • Implement upselling and cross-selling strategies to encourage customers to purchase additional products or upgrade to higher-priced items.

    • Offer bundle deals to incentivize customers to buy multiple items at a discounted price.

    • Personalize recommendations based on customer preferences and...

  • Answered by AI
  • Q3. Detailed breakdown of a one of the features of Zepto (making combos and selling)
  • Ans. 

    Zepto feature allows users to create combos by bundling products together and selling them as a package.

    • Users can select multiple products and create a combo deal with a discounted price.

    • The combo feature helps increase average order value and incentivize customers to purchase more.

    • Zepto provides analytics on the performance of different combos to optimize sales strategy.

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. You are a growth PM of Zepto, how will you grow Zepto fresh 5-6x
  • Ans. 

    To grow Zepto fresh 5-6x, focus on user acquisition, retention, monetization, partnerships, and product innovation.

    • Implement targeted marketing campaigns to acquire new users.

    • Optimize user onboarding process to improve retention rates.

    • Introduce premium features or subscription plans for monetization.

    • Form strategic partnerships with complementary services or platforms.

    • Continuously innovate the product based on user feed...

  • Answered by AI
  • Q2. Breakdown of one of the features answered in the first question

Interview Preparation Tips

Interview preparation tips for other job seekers - Study Zepto and quick commerce well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Management team hendiling
  • Q2. Inventory management cycle count
  • Q3. Rider management
  • Q4. Store management
  • Q5. Daily defect RCA
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. About Your self
  • Q2. About work pressure handling skills
  • Ans. 

    I manage work pressure by prioritizing tasks, maintaining communication, and practicing stress-relief techniques.

    • Prioritization: I use tools like to-do lists to prioritize tasks based on urgency and importance. For example, during a project deadline, I focus on critical tasks first.

    • Time Management: I allocate specific time blocks for each task, ensuring I stay on track. For instance, I set aside uninterrupted time for ...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Some Operation statics questions
  • Q2. I dont remember

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to joint for operation aspirents
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789"...
  • Ans. 

    Calculate sum of large numeric comma separated strings without converting to integers.

    • Split the strings by comma to get individual numbers

    • Iterate from right to left and add digits, carrying over if necessary

    • Maintain correct position of commas in the output string

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. It was Low Level Design Round. Question - Design a file system just like google drive. Functional Requirements - i) It should have functionality of file uploading, downloading, sharing. ii) Need to handle...
  • Ans. 

    Design a file system similar to Google Drive with features for uploading, sharing, and version control.

    • File Uploading: Users can upload files of various formats (e.g., .docx, .pdf) with a progress indicator.

    • File Downloading: Users can download files with options for different formats or versions.

    • File Sharing: Users can share files with specific users or generate shareable links with permissions.

    • Data Loss Handling: Impl...

  • Answered by AI
Round 3 - Technical 

(5 Questions)

  • Q1. It was Hiring Manager round and it tested my knowledge over HLD & LLD. Tell me about the most challenging project which you did till now. Follow Up Questions - i) Draw HLD & write LLD of it. ii) How muc...
  • Q2. What all initiatives I have taken in my career?
  • Ans. 

    I have taken various initiatives in my career to improve processes and drive innovation.

    • Led a team to implement a new agile development process, resulting in faster delivery of products

    • Introduced automated testing tools to improve software quality and reduce manual effort

    • Organized coding workshops for junior developers to enhance their skills and knowledge

    • Initiated a mentorship program to help new hires acclimate to th...

  • Answered by AI
  • Q3. How many microservices do I own & at what scale they handle the traffic?
  • Ans. 

    I own 5 microservices that handle traffic at a scale of 10,000 requests per minute.

    • I own 5 microservices

    • They handle traffic at a scale of 10,000 requests per minute

  • Answered by AI
  • Q4. Tell me the incidents where you went beyond your limits for the work
  • Ans. 

    I have consistently gone above and beyond in my work by taking on additional projects and working extra hours when needed.

    • Volunteering to lead a high-priority project that required long hours and weekend work

    • Staying late to troubleshoot and resolve a critical issue before a major deadline

    • Taking on extra tasks to help a team member who was overwhelmed with their workload

  • Answered by AI
  • Q5. Why are you leaving your current organization?
  • Ans. 

    Seeking new challenges and growth opportunities.

    • Desire for career advancement

    • Looking for new challenges

    • Seeking better work-life balance

    • Company restructuring or changes in management

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zepto Software Development Engineer II interview:
  • DSA
  • HLD
  • LLD

Skills evaluated in this interview

Data Scientist Interview Questions & Answers

user image Anubhav Kesari

posted on 20 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Questions on Past Project
  • Q2. SQL Dense Rank - also having the option to do in Pandas
  • Q3. Pandas groupby on a dataset given - required to calculate group wise yoy rate of a column
  • Ans. 

    Calculate year-over-year (YoY) rates using Pandas groupby for a specific column in a dataset.

    • Use the Pandas 'groupby' method to group data by the desired category (e.g., 'year').

    • Apply the 'pct_change()' function to calculate the percentage change between years.

    • Example: df.groupby('year')['sales'].sum().pct_change() to get YoY sales growth.

    • Ensure the data is sorted by year before applying the calculation for accurate re...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Past project ( which he chose , he chose my very first project , which I had forgotten) so ended up screwing it
  • Q2. SQL / Pyspark question - difficult question
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. What is something about yourself that is not included in your resume?
  • Ans. 

    I am fluent in three languages: English, Spanish, and French.

    • Fluent in English, Spanish, and French

    • Can easily communicate with a diverse range of customers and team members

    • Able to assist non-English speaking customers effectively

  • Answered by AI
  • Q2. Why did you choose this position?
  • Ans. 

    I chose this position because of my passion for retail management and desire to lead a team towards success.

    • Passion for retail management

    • Desire to lead a team

    • Opportunity for growth and development

    • Previous experience in similar roles

  • Answered by AI
  • Q3. Why being a mechanical engineering student with good marks chosen this filed of work which is not so related to your stream?
  • Q4. If u are asked to conduct a symposium , how would you plan the symposium and make it a successful event?
  • Ans. 

    To plan a successful symposium, I would focus on setting clear objectives, selecting engaging speakers, promoting the event effectively, and ensuring smooth logistics.

    • Set clear objectives for the symposium to guide planning and execution

    • Select engaging speakers who are knowledgeable and can captivate the audience

    • Promote the event effectively through various channels to attract attendees

    • Ensure smooth logistics by arrang...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Was questioned about my extra circular activities and there involvements / Achievements !
  • Q2. Family Background , Current location and other things !

Interview Preparation Tips

Interview preparation tips for other job seekers - Express yourself more confident !!
The whole process will be of more over how you solve or how you think or react to the given situation .

Shift Incharge Interview Questions & Answers

user image Manav Busri

posted on 2 Jul 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jul 2024, where I was asked the following questions.

  • Q1. What is your knowledge about Microsoft Excel?
  • Q2. How do you implement formulas in Excel?

Cluster Manager Interview Questions & Answers

user image Sidharth kumar jha

posted on 27 Jun 2025

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Previous job roles
  • Ans. 

    I have held various roles in project management, operations, and team leadership, focusing on efficiency and team collaboration.

    • Managed a team of 10 in a logistics company, improving delivery times by 20%.

    • Led a project to implement a new software system, resulting in a 30% increase in productivity.

    • Coordinated cross-departmental initiatives that enhanced communication and reduced project timelines.

    • Conducted training ses...

  • Answered by AI
  • Q2. Project done / team handling
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Do u have experience
  • Ans. 

    Yes, I have extensive experience in packing and logistics management, ensuring efficiency and accuracy in operations.

    • Managed packing operations for a large warehouse, improving efficiency by 20%.

    • Implemented a new inventory tracking system that reduced packing errors by 15%.

    • Trained a team of 10 staff on best packing practices, enhancing overall productivity.

  • Answered by AI
  • Q2. For how much time you want do job
  • Ans. 

    I am committed to long-term growth and stability in my career, aiming to contribute meaningfully to the organization.

    • I envision myself growing within the company for at least 5-10 years, contributing to its success.

    • I believe in continuous learning and development, which aligns with long-term employment.

    • For example, I aim to take on leadership roles and mentor new employees over time.

    • I am looking for a position where I ...

  • Answered by AI

What people are saying about Zepto

View All
an executive
1w
Is Zepto in Trouble? Cafes Shut, License Suspended, and Too Much Cash Burn
Zepto’s been in the news a lot lately and not for the best reasons. Their warehouse in Dharavi just had its food license suspended because of hygiene issues like fungal growth and expired items. And at the same time, they shut down their Zepto Cafes in Delhi and Chandigarh. Feels like something’s definitely off behind the scenes. On paper, their revenue doubled to Rs.4,454 crore last year but they’re still running at a Rs.1,248 crore loss. What’s scarier is their cash burn Rs.300 crore a month. That’s wild, even for a fast growing startup. Now they’re also dealing with antitrust cases, worker strikes, and tons of customer complaints online. From delivery king to damage control, Zepto really needs to slow down and fix what’s broken before things spiral.
Got a question about Zepto?
Ask anonymously on communities.

Zepto Interview FAQs

How many rounds are there in Zepto interview?
Zepto interview process usually has 1-2 rounds. The most common rounds in the Zepto interview process are One-on-one Round, Technical and HR.
How to prepare for Zepto interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Zepto. The most common topics and skills that interviewers at Zepto expect are Inventory Management, SQL, Operations, Management and Procurement.
What are the top questions asked in Zepto interview?

Some of the top questions asked at the Zepto interview -

  1. Given 2 large numeric comma seperated strings. You need to calculate their sum ...read more
  2. It was Low Level Design Round. Question - Design a file system just like google...read more
  3. How many microservices do I own & at what scale they handle the traff...read more
What are the most common questions asked in Zepto HR round?

The most common HR questions asked in Zepto interview are -

  1. What are your salary expectatio...read more
  2. Why should we hire y...read more
  3. Tell me about yourse...read more
How long is the Zepto interview process?

The duration of Zepto interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 387 interview experiences

Difficulty level

Easy 31%
Moderate 58%
Hard 11%

Duration

Less than 2 weeks 81%
2-4 weeks 14%
4-6 weeks 2%
6-8 weeks 1%
More than 8 weeks 2%
View more
Join Zepto We’re revolutionizing the way India shops.

Interview Questions from Similar Companies

Flipkart Interview Questions
3.9
 • 1.4k Interviews
Swiggy Interview Questions
3.8
 • 464 Interviews
BigBasket Interview Questions
3.9
 • 392 Interviews
CARS24 Interview Questions
3.5
 • 359 Interviews
JustDial Interview Questions
3.5
 • 356 Interviews
Lenskart Interview Questions
3.2
 • 354 Interviews
Info Edge Interview Questions
3.9
 • 347 Interviews
Udaan Interview Questions
3.9
 • 346 Interviews
Eternal Limited Interview Questions
3.7
 • 325 Interviews
View all

Zepto Reviews and Ratings

based on 1.7k reviews

3.5/5

Rating in categories

3.4

Skill development

3.1

Work-life balance

3.6

Salary

3.1

Job security

3.2

Company culture

3.1

Promotions

3.2

Work satisfaction

Explore 1.7k Reviews and Ratings
Human Resource Business Partner Intern

Bangalore / Bengaluru

1-2 Yrs

₹ 1-4.5 LPA

Trainer

Bangalore / Bengaluru

1-5 Yrs

₹ 1-3.5 LPA

Explore more jobs
Shift Incharge
509 salaries
unlock blur

₹2.1 L/yr - ₹4.5 L/yr

Store Manager
204 salaries
unlock blur

₹3.5 L/yr - ₹7.5 L/yr

Team Lead
203 salaries
unlock blur

₹2.6 L/yr - ₹8 L/yr

Senior Manager
169 salaries
unlock blur

₹16 L/yr - ₹28.6 L/yr

Associate Director
134 salaries
unlock blur

₹24 L/yr - ₹68.1 L/yr

Explore more salaries
Compare Zepto with

Blinkit

3.8
Compare

Dunzo

3.4
Compare

BigBasket

3.9
Compare

Swiggy

3.8
Compare
write
Share an Interview