Skip to content
InterviewEra
What is InterviewEraThe platform, founder, and missionHow It WorksAdaptive interview, live captions, scoringResume-aware ScoringCV-native questions + 5-dimension feedback
Campus Placements OverviewStructured mock interviews and cohort analytics for T&P teamsSet up Campus WorkspaceCreate your campus dashboard and invite your batchT&P Product & PricingPilot pricing, bulk onboarding, and placement trackingStudent Invitation HelpHow to accept a campus invite and start practising
Software EngineerDSA, system design, OOP roundsFrontend DeveloperReact, HTML/CSS, JavaScript interviewsTCS Interview QuestionsNQT + technical + HR roundsWipro Careers HubNLTH, WILP, Turbo hiring tracksSolera Careers HubCognitive assessment + Java/SQL roundsReact Interview QuestionsHooks, state, performance topics
Interview Question GeneratorRole-specific questions in secondsATS Resume CheckerScore your resume against job rolesSTAR Answer BuilderStructure behavioral answers clearly
All ResourcesCentral guide and hub directoryBlogInterview prep articles and guidesAgentic AI Interview GuideAI-assisted coding interviews, rubrics, and prepPlacement GuideStep-by-step campus prep playbookSTAR Method GuideMaster behavioral answers
Help CenterGuides, FAQs, and supportDSA Topic MapPatterns, roadmap, and top 50 problemsSoftware Engineer GuideSWE questions and prep hubAndroid GuideKotlin, Compose, MVVM prep hubFrontend GuideReact and JavaScript interviews
PricingFor Teams
Sign inSign up
InterviewEra

InterviewEra is an AI-powered mock interview platform with adaptive follow-ups, resume-aware scoring, and structured interview preparation for campus placements and early-career hiring.

Start Mock Interview

Mock Interview

  • How It Works
  • For Teams
  • Start Mock Interview
  • Campus Placements
  • Campus Workspace
  • Help Center

Free Tools

  • Interview Question Generator
  • ATS Resume Checker
  • STAR Answer Builder

Interview Questions

  • Wipro Careers Hub
  • Solera Careers Hub
  • Amazon SDE Questions
  • Microsoft SDE Questions
  • Infosys SWE Questions
  • Infosys Java Questions
  • Freshworks Frontend Questions
  • Android Developer Questions
  • Frontend Developer Questions
  • Java Developer Questions

Resources

  • Community Hub
  • All Resources
  • Blog
  • Agentic AI Interview Guide
  • What Is Agentic AI
  • Agentic Coding Round
  • AI Prompt Engineering
  • Cursor AI Interview Guide
  • DSA Topic Map
  • Placement Guide
  • STAR Guide
  • HR Guide
  • Interview Tips

Company

  • What is InterviewEra
  • About Us
  • Pricing
  • Contact

© 2026 InterviewEra. 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