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

Startup · Noida

Paytm Interview Questions 2026

Paytm interviews test payments domain knowledge, backend systems, and data engineering for their fintech ecosystem.

Interview rounds
3
Avg. package
8–18 LPA
Fresher hiring
Experienced only
HQ
Noida

Process: Online Assessment → Technical × 2 → HR

Paytm Interview Questions

Placement-oriented · Updated 2026
  1. 01

    What is Paytm's product portfolio and which engineering domains are most relevant for interviews?

    HREasy

    Tip: Paytm (One 97 Communications): payments (wallet, UPI, QR), Paytm Bank, insurance, lending, ticketing, and gaming. Engineering domains: payment systems, wallet management, QR code generation + scanning, notification infrastructure, fraud detection, and data analytics for merchant insights.

  2. 02

    Design Paytm's QR code payment acceptance system for small merchants.

    TechnicalHard

    Tip: QR encodes: merchant VPA (Virtual Payment Address). Flow: customer scans QR → opens UPI app → enters UPI PIN → initiates push payment to merchant VPA → NPCI routes → merchant gets credit + notification. Static QR: fixed amount. Dynamic QR: encoded with amount + order_id for tracking. Verification: webhook from UPI to Paytm backend.

  3. 03

    How does a digital wallet work? Describe the debit and credit flow.

    TechnicalMedium

    Tip: Wallet: stored-value account. Credit flow: add money → bank transfer (NEFT/UPI) → credit wallet ledger row. Debit flow: payment initiated → check balance (SELECT FOR UPDATE) → debit wallet row → credit merchant. Idempotency: use payment_request_id to prevent double debit on retry. Paytm Wallet must be PPI-compliant (RBI PPI norms).

  4. 04

    Write code to find all subsets of a given set (power set).

    TechnicalMedium

    Tip: Backtracking: at each index, include or exclude the element. O(2^n) time (correct — there are 2^n subsets). Bit manipulation approach: for n elements, iterate 0 to 2^n-1; bit k set → include element k. Paytm coding rounds test classic recursion/backtracking problems.

  5. 05

    How would you implement Paytm's KYC (Know Your Customer) verification system?

    TechnicalHard

    Tip: RBI-mandated KYC levels: Minimum KYC (₹10K wallet limit, OTP-based) → Full KYC (₹2L limit, Aadhaar eKYC or V-CIP video). Tech flow: Aadhaar OTP → UIDAI API → decrypt response → store encrypted PAN/Aadhaar hash. V-CIP: video call recording, OCR on documents, liveness detection (ML). Data: encrypted, masked in logs.

  6. 06

    What is the RBI UPI transaction limit and how does Paytm enforce it technically?

    TechnicalEasy

    Tip: RBI UPI limits: ₹1L per transaction for P2P, ₹5L for certain merchant categories. Paytm: pre-transaction check against daily/transaction limits stored in a fast KV store (Redis). Also check NPCI response code for bank-imposed limits. Daily limit resets at midnight — use UTC-offset for IST.

  7. 07

    Tell me about a time you had to work with legacy code that was critical to business operations.

    BehavioralMedium

    Tip: Paytm has been operating since 2010 — significant legacy code exists. Show: you documented before touching, added tests before refactoring, made incremental changes (strangler fig pattern) rather than rewrites, and measured metrics before/after. 'It worked for 10 years, respect it before changing it.'

  8. 08

    How does Paytm handle the ₹30+ billion in merchant settlements daily?

    SituationalHard

    Tip: Settlement flow: transactions collected throughout day → end-of-day batch → net settlement per merchant → NEFT/IMPS transfer via nodal bank account. T+1 settlement standard. Engineering: batch processing (Spark), reconciliation between Paytm ledger and bank statement, dispute handling (chargeback) queue, RBI-mandated audit logs.

  9. 09

    What is two-factor authentication (2FA) and how does Paytm implement it for UPI transactions?

    TechnicalEasy

    Tip: UPI mandates two-factor auth: Factor 1 = device binding (UPI app registered to this SIM/device). Factor 2 = UPI PIN (6-digit, stored as a hash at the bank, never at Paytm). If SIM is swapped without PIN reset → NPCI can detect via SIM-swap API. Paytm's fraud model flags SIM-swap + large transaction combinations.

  10. 10

    Explain eventual consistency in the context of a Paytm wallet transaction.

    TechnicalMedium

    Tip: User sends ₹100 via Paytm. The payment is immediately marked 'Processing' (optimistic response). Bank debit happens asynchronously. If bank confirms: mark COMPLETE. If bank fails: mark FAILED and reverse the wallet hold. This is a saga pattern — the displayed balance may briefly show the amount on hold.

How to prepare for a Paytm interview

One 97 Communications (Paytm) interviews follow a 3-round process. Here is what to expect and how to prepare for each stage.

  1. 1Online Assessment→
  2. 2Technical × 2→
  3. 3HR
  • ✓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 Paytm mock interview

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

Start free mock interviewFree question generator

Practice tools

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

Similar companies to consider

  • CRED questions
  • Meesho questions
  • Groww questions
  • Zerodha questions
  • Ola questions

Guides and resources

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