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

Startup · Bengaluru

Meesho Interview Questions 2026

Meesho interviews test backend scalability, data engineering, and first-principles thinking for their social commerce platform.

Interview rounds
4
Avg. package
14–30 LPA
Fresher hiring
Experienced only
HQ
Bengaluru

Process: Online Coding → Technical × 2 → System Design → HR

Meesho Interview Questions

Placement-oriented · Updated 2026
  1. 01

    What is Meesho and what makes their engineering challenges unique?

    HREasy

    Tip: Meesho: social commerce platform connecting resellers and suppliers in tier-2/3 India. Unique challenges: extremely low-bandwidth users (2G/3G), vernacular language support (12+ Indian languages), 10M+ SKUs from unorganised suppliers (noisy catalog data), and cash-on-delivery (COD) logistics optimisation.

  2. 02

    How would you design Meesho's product catalog system for 50M+ SKUs from unstructured supplier data?

    TechnicalHard

    Tip: Ingestion: supplier uploads images + text → ML pipeline (product categorisation, attribute extraction, duplicate detection). Storage: Elasticsearch for search, S3 for images, Postgres for structured metadata. De-duplication: product matching model using embeddings (same product from multiple suppliers). Quality scoring to rank catalog completeness.

  3. 03

    Write code to find the maximum profit from buying and selling a stock with at most K transactions.

    TechnicalHard

    Tip: DP: dp[k][i] = max profit using at most k transactions up to day i. Transition: dp[k][i] = max(dp[k][i-1], max over j < i of: price[i] - price[j] + dp[k-1][j]). Optimise: track max(dp[k-1][j] - price[j]) as a running variable. O(kn) time, O(kn) or O(n) space with rolling array.

  4. 04

    How does Meesho handle COD (Cash on Delivery) logistics at scale?

    SituationalMedium

    Tip: COD is 60–70% of Meesho's orders — unique challenges: cash collection at delivery, COD return fraud (order placed never intended to collect), remittance delays (3PL holds cash before transferring). Engineering: COD risk scoring model, automated remittance reconciliation, fraud signal (repeat non-delivery addresses).

  5. 05

    Explain how you would implement multilingual search for Meesho's 12+ language catalog.

    TechnicalMedium

    Tip: Approach: (1) Transliteration: Hinglish → Hindi (user types "kurti" → also searches "कुर्ती"). (2) Translation layer: query → English canonical form → Elasticsearch. (3) Language-specific analyzers in Elasticsearch (devanagari tokeniser). (4) Pre-translate popular queries. Meesho has a dedicated NLP team for this.

  6. 06

    What is an inverted index and how does Elasticsearch use it for Meesho's search?

    TechnicalMedium

    Tip: Inverted index: maps each unique term to the list of document IDs containing it. Forward index: document → terms. Inverted: term → documents. ES builds this during indexing. For "kurti blue cotton": each token indexed separately, intersected at query time. Allows searching 50M SKUs in milliseconds.

  7. 07

    Tell me about a time you had to make a system work for low-bandwidth or low-end device users.

    BehavioralMedium

    Tip: Meesho's users are on 2G and ₹5,000 Android phones. Real engineering empathy here. Examples: image compression, lazy loading, reducing bundle size, building progressive web apps, offline-first architecture, prefetching on WiFi. Show you understand that 'works on my machine' is not good enough.

  8. 08

    How would you build Meesho's reseller commission tracking and payout system?

    TechnicalHard

    Tip: Event: order delivered → trigger commission event → write to a ledger table (credit reseller_id, amount, order_id). Payout: weekly batch: aggregate ledger → create payout record → initiate NEFT/UPI transfer → mark settled. Idempotency: payout_id as unique key prevents double payout. Audit trail: immutable ledger rows.

  9. 09

    What is the difference between horizontal and vertical scaling? When does each apply to Meesho's use case?

    TechnicalEasy

    Tip: Vertical: add more CPU/RAM to existing server (scale up). Horizontal: add more servers (scale out). Meesho: horizontal scaling for stateless API servers (just add more pods), vertical for single-node DB until read replicas/sharding becomes necessary. Horizontal is preferred for Meesho's bursty traffic (sale events).

  10. 10

    How do you ensure data consistency in Meesho's order management across multiple services?

    TechnicalHard

    Tip: Saga pattern: each service publishes events and listens to events from others. Choreography-based: OrderService publishes ORDER_CREATED → InventoryService listens, reserves stock, publishes INVENTORY_RESERVED → PaymentService listens. Compensating transactions for rollback. Outbox pattern ensures DB write + event publish are atomic.

How to prepare for a Meesho interview

Fashnear Technologies (Meesho) interviews follow a 4-round process. Here is what to expect and how to prepare for each stage.

  1. 1Online Coding→
  2. 2Technical × 2→
  3. 3System Design→
  4. 4HR
  • ✓Demonstrate ownership and initiative: startups ask "tell me about a side project or problem you solved without being asked."
  • ✓Know the company's domain: if applying to a fintech startup, understand payments infrastructure, compliance basics (RBI, SEBI), and relevant technology choices.
  • ✓Be prepared for open-ended design questions: "how would you build X from scratch with a team of two engineers in three months?"
  • ✓Show you can move fast without breaking things: discuss how you balance speed and correctness in software decisions.
  • ✓Bring documented examples of production impact — metrics, scale, and business outcomes matter here.
  • ✓Research the company's tech stack on their engineering blog or GitHub — mentioning specific tools they use shows genuine interest.

Practice a full Meesho mock interview

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

Start free mock interviewFree question generator

Roles you can target at Meesho

  • Meesho SWE questions
  • Meesho BE Dev questions

Practice tools

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

Similar companies to consider

  • CRED questions
  • Groww questions
  • Paytm questions
  • Zerodha questions
  • Ola questions

Guides and resources

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