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

Filter interviews by

Zepto Software Development Engineer 3 Interview Questions, Process, and Tips

Updated 9 Nov 2024

Top Zepto Software Development Engineer 3 Interview Questions and Answers

View all 6 questions

Zepto Software Development Engineer 3 Interview Experiences

9 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Design movie booking system
  • Ans. 

    Design a movie booking system

    • Create a database to store movie details, showtimes, and seat availability

    • Develop a user interface for customers to browse movies, select showtimes, and book seats

    • Implement a payment gateway for secure transactions

    • Include features like seat selection, seat reservation timeout, and booking confirmation

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design online book reader

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
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 - Technical 

(2 Questions)

  • Q1. LLD Question to design tic tac toe
  • Q2. Resume discussion
Round 2 - Technical 

(1 Question)

  • Q1. Design a book reader service such as kindle
  • Ans. 

    Design a book reader service similar to Kindle

    • Implement a user-friendly interface for browsing and purchasing books

    • Include features like bookmarking, highlighting, and note-taking

    • Support various file formats such as PDF, EPUB, and MOBI

    • Provide options for customization like font size, background color, and reading progress tracking

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - External interviewers are not good, they want textbook answers

Skills evaluated in this interview

Software Development Engineer 3 Interview Questions Asked at Other Companies

asked in Fiserv
Q1. What are triggers , where can they be used ? What is a mutating t ... read more
asked in Tesco
Q2. Find overlapping interval to calculate final payment for store wo ... read more
asked in Fiserv
Q3. How to define a parameterized cursor in PLSQL , how to open and c ... read more
asked in Fiserv
Q4. What is Rownum ? Is expression Rownum >4 correct ?
asked in Tesco
Q5. Design a mook-my-show type of system for companies. Companies can ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Movie booking System
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design Splitwise
  • Ans. 

    Design Splitwise - an app for splitting expenses among friends

    • Allow users to create groups and add expenses

    • Track who owes how much to whom

    • Support different currencies and payment methods

    • Send notifications for pending payments

    • Generate reports for easy settlement

  • Answered by AI

Skills evaluated in this interview

Zepto interview questions for designations

 Senior Software Engineer 3

 (1)

 Tech Lead Software Engineer 3

 (1)

 Software Development Engineer II

 (4)

 Quality Assurance Engineer 3

 (1)

 Software Engineer

 (4)

 Senior Software Engineer

 (9)

 Lead Software Engineer

 (2)

 Software Engineer III

 (1)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Referral

Round 1 - Technical 

(2 Questions)

  • Q1. Movie booking system
  • Q2. Cab booking system

Get interview-ready with Top Zepto Interview Questions

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Instahyre and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Design movie booking system
  • Ans. 

    Design a movie booking system for users to book tickets for movies at various theaters.

    • Create a database to store movie details, theater information, show timings, and seat availability.

    • Develop a user-friendly interface for users to search for movies, select show timings, and book seats.

    • Implement a payment gateway for users to make online payments for ticket bookings.

    • Include features like seat selection, seat availabil...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Design Google calendar
  • Ans. 

    Design a Google calendar

    • Allow users to create events and set reminders

    • Provide options for recurring events

    • Include sharing and collaboration features

    • Integrate with other Google services like Gmail and Maps

  • Answered by AI
  • Q2. NO question asked in the second round

Skills evaluated in this interview

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

(1 Question)

  • Q1. Design LLD of Dream11
  • Ans. 

    Design LLD of Dream11

    • Use microservices architecture for scalability and flexibility

    • Implement user authentication and authorization for secure access

    • Utilize caching mechanisms to improve performance

    • Design database schema for storing user data, teams, matches, and scores

    • Include features like creating teams, joining contests, and viewing live scores

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

DSA | LC Medium was asked

Round 2 - LLD 

(1 Question)

  • Q1. Typical LLD with API and DB schema
  • Ans. 

    LLD stands for Low Level Design, which includes designing API and database schema for a software system.

    • LLD involves detailed design of individual components/modules of a software system.

    • API design includes defining endpoints, request/response formats, authentication mechanisms, etc.

    • DB schema design involves defining tables, relationships, indexes, constraints, etc.

    • LLD ensures that the system is scalable, maintainable,...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    0/1 Knapsack Problem Statement

    A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...

  • Ans. 

    Yes, the 0/1 Knapsack problem can be solved using dynamic programming with a space complexity of not more than O(W).

    • Use a 1D array to store the maximum value that can be stolen for each weight capacity from 0 to W.

    • Iterate through each item and update the array based on whether including the item would increase the total value.

    • The final value in the array at index W will be the maximum value that can be stolen.

  • Answered by AI
  • Q2. 

    Find the Second Largest Element

    Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.

    If a second largest element does not exist, return -1.

    Example:

    Input:
    ARR = [2,...
  • Ans. 

    Find the second largest element in an array of integers.

    • Iterate through the array to find the largest and second largest elements.

    • Handle cases where all elements are identical.

    • Return -1 if a second largest element does not exist.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

System Design Round

  • Q1. Design a system for Twitter, discussing its architecture, key components, and scalability considerations.
  • Ans. 

    Design a scalable system for Twitter with key components and architecture.

    • Use microservices architecture for scalability and fault isolation.

    • Key components include user service, tweet service, timeline service, and notification service.

    • Use a distributed database like Cassandra for storing tweets and user data.

    • Implement a message queue like Kafka for handling real-time updates and notifications.

    • Use a caching layer like ...

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

It is just a formality

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaResume shortlistingSwiggy interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, DBMS, SQL,Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : System Design
Tip 2 : Practice questions from leetcode
Tip 3 : Have some projects.

Application resume tips for other job seekers

Tip 1 : Mention what you know 
Tip 2 : Good previous work to showcase

Final outcome of the interviewSelected

Skills evaluated in this interview

Zepto Interview FAQs

How many rounds are there in Zepto Software Development Engineer 3 interview?
Zepto interview process usually has 1-2 rounds. The most common rounds in the Zepto interview process are Technical, Coding Test and One-on-one Round.
What are the top questions asked in Zepto Software Development Engineer 3 interview?

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

  1. Design a book reader service such as kin...read more
  2. Typical LLD with API and DB sch...read more
  3. Design movie booking sys...read more

Tell us how to improve this page.

Zepto Software Development Engineer 3 Interview Process

based on 11 interviews

1 Interview rounds

  • Technical Round
View more
Join Zepto We’re revolutionizing the way India shops.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 434 Interviews
Udaan Interview Questions
3.9
 • 334 Interviews
Meesho Interview Questions
3.7
 • 333 Interviews
BlackBuck Interview Questions
3.8
 • 180 Interviews
Tata 1mg Interview Questions
3.6
 • 151 Interviews
Digit Insurance Interview Questions
3.9
 • 146 Interviews
Paisabazaar.com Interview Questions
3.4
 • 142 Interviews
Urban Company Interview Questions
3.4
 • 136 Interviews
Ninjacart Interview Questions
3.9
 • 96 Interviews
Zetwerk Interview Questions
4.1
 • 89 Interviews
View all
Zepto Software Development Engineer 3 Salary
based on 4 salaries
₹40 L/yr - ₹70 L/yr
54% more than the average Software Development Engineer 3 Salary in India
View more details
Shift Incharge
414 salaries
unlock blur

₹2 L/yr - ₹4.8 L/yr

Store Manager
158 salaries
unlock blur

₹3 L/yr - ₹8.5 L/yr

Team Lead
150 salaries
unlock blur

₹2 L/yr - ₹8.4 L/yr

Senior Manager
141 salaries
unlock blur

₹10 L/yr - ₹31 L/yr

Store Incharge
94 salaries
unlock blur

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