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

Compare button icon Compare button icon Compare
3.5

based on 996 Reviews

Filter interviews by

Zepto Interview Questions, Process, and Tips

Updated 25 Jan 2025

Top Zepto Interview Questions and Answers

View all 115 questions

Zepto Interview Experiences

Popular Designations

192 interviews found

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

I was interviewed 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...
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

Software Development Engineer II Interview Questions asked at other Companies

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" constraints - since the strings can... read more
View answer (1)

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

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of ArrayYou have been given an array/list ‘arr’ of length ‘N’, which contains single digit elements at every index. Your task is to return the sum of all elements of the array. But the final sum should also be a single digit. To... read more
View answer (2)
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

Top Zepto Quality Assurance Engineer 3 Interview Questions and Answers

Q1. how can you check backward compatibility in API (if BE changes are deployed on PROD)
View answer (2)

Quality Assurance Engineer 3 Interview Questions asked at other Companies

Q1. how can you check backward compatibility in API (if BE changes are deployed on PROD)
View answer (2)

SDE 2 -FE Interview Questions & Answers

user image Anonymous

posted on 15 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is the implementation of an accordion feature using vanilla JavaScript?
  • Q2. What is a polyfill for Promise.all, and how does it work?

Zepto interview questions for popular designations

 Shift Incharge

 (11)

 Senior Software Engineer

 (9)

 Software Development Engineer 3

 (9)

 Store Manager

 (6)

 Operations Manager

 (5)

 Software Developer

 (5)

 MIS Executive

 (4)

 Product Manager

 (4)

Pharmacist Interview Questions & Answers

user image Anonymous

posted on 23 Jan 2025

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

I was interviewed in Dec 2024.

Round 1 - HR 

(5 Questions)

  • Q1. Tell me About Yourself?
  • Q2. What is the Role of Pharmacist?
  • Q3. What is Antibiotic and Antibodies?
  • Q4. Metformin Used For Which Disease?
  • Q5. What is Diabetes?

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be confident enough and Fluent whenever they ask questions even though that answer is wrong. Don’t give single word answers and over smart answers.

My interview was just a 2-4 minute long thats it later they directly said “You was Selected 🌝” Later they said about company, role and Salary etc…so finally it was 30 minutes interview.

Pharmacist Interview Questions asked at other Companies

Q1. 1. in which temperature we can store insulin inj sol 2.what are the parts of prescription. 3. how many types of inventry 4. what is LASA, FIFO examples of LASA. 5. which drugs are come under schedule x 6. What is GRN and why it is important... read more
View answer (16)

Get interview-ready with Top Zepto Interview Questions

Store Manager Interview Questions & Answers

user image Anonymous

posted on 29 Dec 2024

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

I applied via AmbitionBox and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Behavioral 

(2 Questions)

  • Q1. I want g grow up my career in zepto cafe
  • Q2. This job is very convenient for me I will be available at anytime

Store Manager Interview Questions asked at other Companies

Q1. If ebita is down, what is basic plans, stores conversion is down, IPCm, ATS, DOWN. ---MY ANSWER IS TO GET BASIC RIGHT, REST ALL THE KPI WILL BE FULL FILLED AUTOMATICALLY. Staff to staff marking is very much important and understand your tea... read more
View answer (29)

Jobs at Zepto

View all

Store Incharge Interview Questions & Answers

user image Harsha vardan

posted on 22 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. Inventory management
  • Q2. Man power handling
  • Q3. How you coordinate with associate
  • Q4. Audit planning to find missing sku
  • Ans. 

    Audit planning involves systematic review of inventory records, physical counts, and reconciliation to identify missing SKUs.

    • Review inventory records to identify discrepancies

    • Conduct physical counts of inventory to compare with records

    • Reconcile physical counts with inventory records to pinpoint missing SKUs

    • Investigate potential reasons for missing SKUs such as theft, misplacement, or recording errors

  • Answered by AI

Store Incharge Interview Questions asked at other Companies

Q1. if material purchase in party but some material in liquid and some has been expiared how would have in this case?
View answer (4)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself.
  • Ans. 

    Experienced Cluster Manager with a proven track record of successfully leading teams to achieve sales targets and drive business growth.

    • Over 5 years of experience in managing multiple clusters and overseeing operations

    • Strong leadership skills with the ability to motivate and inspire team members

    • Expertise in developing and implementing strategic plans to meet and exceed sales goals

    • Excellent communication and interperson...

  • Answered by AI
  • Q2. How much manpower is required to complete 2,000 orders in 20 hours if one employee has a productivity rate of 210 orders per hour?
  • Ans. 

    To complete 2,000 orders in 20 hours with a productivity rate of 210 orders per hour, you would need 10 employees.

    • One employee can complete 210 orders per hour

    • To complete 2,000 orders in 20 hours, you would need 10 employees (2,000 orders / 20 hours = 100 orders per hour; 100 orders per hour / 210 orders per hour per employee = 10 employees)

  • Answered by AI

Cluster Manager Interview Questions asked at other Companies

Q1. You are handling 15 DC if Assume one DC man power Suddenly On Leave how will You Clear Pendency?
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Instahyre and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - System Design 

(1 Question)

  • Q1. Design Google Calendar
Round 2 - System Design 

(1 Question)

  • Q1. Design FASTag system

Interview Preparation Tips

Topics to prepare for Zepto Staff Engineer interview:
  • HLD
  • System Design

Staff Engineer Interview Questions asked at other Companies

Q1. Swap Adjacent Bit PairsYou are given an integer 'N'. Your task is to find the number formed after swapping each even bit of 'N' in its binary representation with its adjacent bit on the right, assuming that the least significant bit is an o... read more
View answer (2)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Ask about supply chain and operations
  • Q2. Coding , big query and sql
Round 2 - Assignment 

Demand planning and capacity pla

Operations Manager Interview Questions asked at other Companies

Q1. That, if a student, who passed 12th and doesn't want to study further so how would you convince him to study more
View answer (5)

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 SQL, Management, Procurement, Analytics and Operations.
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. How many microservices do I own & at what scale they handle the traff...read more
  3. How to manage you rider is...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.

Zepto Interview Process

based on 264 interviews

Interview experience

4.1
  
Good
View more
Join Zepto We’re revolutionizing the way India shops.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 760 Interviews
Swiggy Interview Questions
3.8
 • 424 Interviews
BigBasket Interview Questions
3.9
 • 346 Interviews
Zomato Interview Questions
3.8
 • 315 Interviews
Blinkit Interview Questions
3.7
 • 174 Interviews
Ola Cabs Interview Questions
3.4
 • 141 Interviews
MakeMyTrip Interview Questions
3.7
 • 121 Interviews
BookMyShow Interview Questions
3.9
 • 23 Interviews
View all

Zepto Reviews and Ratings

based on 996 reviews

3.5/5

Rating in categories

3.4

Skill development

3.1

Work-life balance

3.5

Salary

3.1

Job security

3.1

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 996 Reviews and Ratings
Superstore Manager

Hyderabad / Secunderabad,

Lucknow

+1

1-6 Yrs

₹ 3.25-5.5 LPA

Superstore Manager

Pune,

Bangalore / Bengaluru

+1

1-6 Yrs

₹ 3.5-5.5 LPA

Explore more jobs
Shift Incharge
382 salaries
unlock blur

₹2.2 L/yr - ₹5 L/yr

Team Lead
136 salaries
unlock blur

₹1.5 L/yr - ₹8 L/yr

Store Manager
128 salaries
unlock blur

₹2.2 L/yr - ₹8.2 L/yr

Senior Manager
126 salaries
unlock blur

₹13 L/yr - ₹33 L/yr

Store Incharge
90 salaries
unlock blur

₹2.3 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Zepto with

Blinkit

3.7
Compare

Dunzo

3.4
Compare

BigBasket

3.9
Compare

Swiggy

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview