Upload Button Icon Add office photos
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

Compare button icon Compare button icon Compare
3.6

based on 936 Reviews

Filter interviews by

Zepto Software Engineer Interview Questions and Answers

Updated 6 Dec 2024

Zepto Software Engineer Interview Experiences

4 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is deep copy ?
  • Ans. 

    Deep copy is a copy of an object that duplicates all of its attributes, including nested objects, rather than just copying references.

    • Deep copy creates a new object with its own unique memory space.

    • Changes made to the original object do not affect the deep copy.

    • Deep copy is often used when you need to modify an object without affecting the original.

    • Example: Using JSON.parse(JSON.stringify(object)) in JavaScript to crea

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 hr coding round required me to solve 2 leetcode medium questions

Round 2 - System Design 

(1 Question)

  • Q1. Design an online grocery store basically zepto.
  • Ans. 

    Design an online grocery store similar to zepto.

    • Implement user-friendly interface for easy navigation

    • Include search functionality for quick product discovery

    • Offer secure payment options for customer convenience

    • Provide delivery options with tracking feature

    • Include customer reviews and ratings for products

    • Implement inventory management system for real-time updates

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find DuplicateYou have been given an integer array/list(ARR) of s ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Referral and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

It was a DSA round with one medium and one hard question.

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

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

Round 1 - Coding Test 

2 leetcode medium question in 1 hr

Zepto interview questions for designations

 Senior Software Engineer

 (9)

 Software Engineer III

 (1)

 Lead Software Engineer

 (1)

 Software Development Engineer II

 (4)

 Senior Software Engineer 2

 (2)

 Software Developer

 (5)

 Software Engineer2

 (1)

 Software Developer Intern

 (1)

Interview questions from similar companies

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

I applied via campus placement at Maulana Azad National Institute of Technology (NIT), Bhopal and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 questions easy-medium level leetcode problem I solved 2 completely and 3rd question partially (9/15 test cases passed) to move on to 2nd round

Round 2 - Coding Test 

(1 Question)

  • Q1. Implement an app similar to splitwise
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

1. PEAK ELEMENT QUESTION.
2. COIN DENOMINATION

Interview experience
2
Poor
Difficulty level
Moderate
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 

(1 Question)

  • Q1. Create pagination component using an api show the data for the pages
  • Ans. 

    Create a pagination component using an API to display data for different pages.

    • Use API to fetch data for each page

    • Implement pagination logic to display data for each page

    • Allow users to navigate between pages

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Golang specific question regarding worker pool implementation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. He asked to invert a binary tree
  • Q2. Deep dive in projects
  • Q3. Asked me indept js questions

Interview Preparation Tips

Topics to prepare for PharmEasy Software Engineer interview:
  • Binary search
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

So after Resume shortlisting you have Round 1 as Programming Test (60%) & Aptitude Test (40%) in which you will be asked 15 aptitude questions and 2 DSA problems. You will get 1 hour to write the test.
DSA problems:
1. Merge 2 sorted arrays
2. find the target sum in given array and return their indexes

Round 3 - One-on-one 

(3 Questions)

  • Q1. If you clear Round 1 then you will go forward to Round 2 which is one-to-one technical round. In this round you will be asked leetcode problems and some conceptual questions. I was asked to Find the Max su...
  • Q2. Length of Longest Substring with distinct character
  • Ans. 

    Find the length of the longest substring with distinct characters in a given string.

    • Use a sliding window approach to keep track of the current substring.

    • Maintain a set to store the distinct characters in the current substring.

    • Update the maximum length of the substring whenever a longer substring is found.

  • Answered by AI
  • Q3. Find Max sum of subarray.
  • Ans. 

    The maximum sum of a subarray is to be found.

    • Use Kadane's algorithm to find the maximum sum of a subarray.

    • Initialize two variables: maxSum and currentSum.

    • Iterate through the array and update currentSum by adding the current element.

    • If currentSum becomes negative, reset it to 0.

    • If currentSum is greater than maxSum, update maxSum.

    • Return maxSum as the maximum sum of a subarray.

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

(2 Questions)

  • Q1. Last round was Head of engineering round in this you will be asked some technical questions like: Apply Merge sort on a Linked List
  • Q2. 25 Horses: Google interview problem

Interview Preparation Tips

Topics to prepare for Moglix Software Engineer interview:
  • Leetcode easy&medium
  • Aptitude
  • Famous interview Problems
Interview preparation tips for other job seekers - Prepare your aptitude well as most of the candidates got rejected in the aptitude round.
Don't show your nervousness.
Read Problem statements, Understand it and then approach to solve it.
Practice, market scenario is though right now.
Lastly, have faith in yourself that you would do you best.

Skills evaluated in this interview

Zepto Interview FAQs

How many rounds are there in Zepto Software Engineer interview?
Zepto interview process usually has 1-2 rounds. The most common rounds in the Zepto interview process are Coding Test and One-on-one Round.
How to prepare for Zepto Software Engineer 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 Corba, Enrollment, ICU, Natural Language Processing and SAP MM.
What are the top questions asked in Zepto Software Engineer interview?

Some of the top questions asked at the Zepto Software Engineer interview -

  1. Design an online grocery store basically zep...read more
  2. What is deep cop...read more

Tell us how to improve this page.

Zepto Software Engineer Interview Process

based on 4 interviews in last 1 year

1 Interview rounds

  • Coding Test Round
View more

People are getting interviews through

based on 3 Zepto interviews
Referral
33%
67% 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
Zepto Software Engineer Salary
based on 40 salaries
₹12 L/yr - ₹44 L/yr
245% more than the average Software Engineer Salary in India
View more details

Zepto Software Engineer Reviews and Ratings

based on 2 reviews

2.2/5

Rating in categories

4.0

Skill development

2.0

Work-Life balance

4.0

Salary & Benefits

4.0

Job Security

3.0

Company culture

3.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 2 Reviews and Ratings
Shift Incharge
371 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Team Lead
129 salaries
unlock blur

₹2 L/yr - ₹8 L/yr

Store Manager
126 salaries
unlock blur

₹2.2 L/yr - ₹8.5 L/yr

Senior Manager
118 salaries
unlock blur

₹10 L/yr - ₹30 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

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