InterviewEra.com

AI-powered mock interviews and resume-aware scoring — built for Indian campus and early-career hiring. Now in private beta.

Start Mock Interview
Secure payments via Razorpay

Tools

  • Question Generator
  • ATS Resume Checker
  • STAR Builder

Interview Questions

  • Software Engineer Questions
  • TCS Interview Questions
  • React Interview Questions

Resources

  • Blog
  • Placement Guide
  • STAR Method Guide

Company

  • About
  • Pricing
  • Contact

© 2026 InterviewEra.com. All rights reserved.

Privacy PolicyTermsRefundRanchi, Jharkhand, India
Interview Questions›Zomato

Product Company · Gurugram

Zomato Interview Questions 2026

Zomato interviews test algorithmic thinking, backend development skills, and cultural alignment for engineering and analytics roles.

Interview rounds
3
Avg. package
12–28 LPA
Fresher hiring
Experienced only
HQ
Gurugram

Process: Online Coding → Technical × 2 → Cultural Fit

Zomato Interview Questions

Placement-oriented · Updated 2026
  1. 01

    What does Zomato's data platform look like and what kind of data roles do they hire for?

    HREasy

    Tip: Zomato hires Data Analysts, Data Engineers, and ML Engineers. Their data platform processes order data, restaurant ratings, search clicks, and delivery telemetry. Roles require SQL proficiency, Python, and familiarity with Spark or Kafka. Analytics interviews include case studies on restaurant churn or user cohort analysis.

  2. 02

    Write a SQL query to find restaurants with a rating drop of more than 0.5 compared to the previous month.

    TechnicalMedium

    Tip: Use LAG() window function: LAG(avg_rating, 1) OVER (PARTITION BY restaurant_id ORDER BY month). Filter where current_month_rating - lag_rating < -0.5. Zomato analytics rounds are SQL-heavy — window functions appear in almost every interview.

  3. 03

    How would you design Zomato's restaurant discovery and ranking algorithm?

    TechnicalHard

    Tip: Ranking signals: distance, rating (Bayesian average, not raw), delivery time, cuisine preference (personalised), restaurant freshness (new listings), sponsored listings. Serving: pre-compute scores per geo-cell per user-segment, refresh every 30 min. Real-time: adjust for current wait time and weather.

  4. 04

    Explain the difference between OLTP and OLAP databases. Which does Zomato need for real-time orders vs analytics?

    TechnicalEasy

    Tip: OLTP (Online Transaction Processing): many small reads/writes, row-oriented, MySQL/Postgres — for live order state. OLAP (Online Analytical Processing): large aggregations, column-oriented, Redshift/BigQuery/ClickHouse — for analytics. Zomato runs both: OLTP for operations, OLAP warehouse for business intelligence.

  5. 05

    Write a Python function to calculate the rolling 7-day average for a time series of daily orders.

    TechnicalEasy

    Tip: Use pandas: df["orders"].rolling(7).mean(). From scratch: sliding window with a deque, sum the last 7 values, divide by min(window_size, i+1). Zomato DA interviews test pandas fluency — also know resample() for time-based aggregation.

  6. 06

    How would you identify and handle a sudden spike in restaurant cancellations on Zomato's platform?

    SituationalMedium

    Tip: Detection: real-time dashboard with cancellation rate per restaurant/zone alerts when >3σ above baseline. Investigation: join with order events (accepted but late? restaurant marked busy?). Action: auto-pause high-cancellation restaurants, alert account manager, surface to user as "temporarily unavailable."

  7. 07

    What is A/B testing and how would you design an experiment to test a new restaurant ranking model?

    TechnicalMedium

    Tip: A/B test: random split users into control (current ranking) and treatment (new model). Metrics: primary (order conversion rate), guardrail (cancellation rate, delivery time). Duration: run until statistical significance (p < 0.05). Pitfalls: novelty effect, SUTVA violations (users share restaurants).

  8. 08

    Describe a time you used data to change the direction of a project or team decision.

    BehavioralMedium

    Tip: Use STAR. Zomato values data-driven decisions. Show: you identified a metric that contradicted intuition, surfaced it clearly to stakeholders, proposed an alternative direction, and measured the outcome. Quantify the impact — 'increased CTR by 12%' is stronger than 'improved performance.'

  9. 09

    What is the difference between precision and recall? In which Zomato use case does each matter more?

    TechnicalMedium

    Tip: Precision: of items flagged positive, what fraction are actually positive. Recall: of all actual positives, what fraction did you catch. Fraud detection: high recall (catch all fraud, tolerate false positives). Restaurant recommendation: high precision (show only great matches, missing some is OK).

  10. 10

    How does Zomato use real-time data to optimise delivery partner allocation?

    SituationalHard

    Tip: This is an assignment problem: match delivery partners to orders to minimise total expected delivery time. Real-time constraints: partner is moving, order might not be ready, multiple orders can be batched. Zomato's approach: combinatorial optimisation with a 30-second re-solve window using auction-based algorithms.

How to prepare for a Zomato interview

Zomato Limited interviews follow a 3-round process. Here is what to expect and how to prepare for each stage.

  1. 1Online Coding→
  2. 2Technical × 2→
  3. 3Cultural Fit
  • ✓Strengthen your DSA fundamentals: aim for clean solutions to LeetCode Medium problems within 25 minutes.
  • ✓Learn system design basics: caching strategies, database indexing, horizontal vs vertical scaling, and message queues.
  • ✓Understand the company's product and engineering blog: many product companies ask domain-specific questions tied to their actual tech stack.
  • ✓Prepare for culture-fit questions: product companies value ownership, speed, and first-principles thinking — have examples ready.
  • ✓Bring documented examples of production impact — metrics, scale, and business outcomes matter here.
  • ✓Review backend fundamentals: REST APIs, database design, and common architectural patterns (microservices, event-driven).

Practice a full Zomato mock interview

Upload your resume and get questions scored across technical depth, communication, structure, confidence, and relevance — the same criteria Zomato panels use.

Start free mock interviewFree question generator

Roles you can target at Zomato

  • Zomato SWE questions
  • Zomato BE Dev questions

Practice tools

  • Zomato question generator
  • ATS resume checker
  • STAR answer builder

Similar companies to consider

  • Flipkart questions
  • Zoho questions
  • Swiggy questions
  • Razorpay questions
  • PhonePe questions

Guides and resources

  • All interview questions
  • STAR method with examples
  • HR interview answer tips
  • Software engineer interview guide