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

Startup · Bengaluru

CRED Interview Questions 2026

CRED interviews are highly competitive, emphasising elegant code, distributed systems, and autonomous thinking.

Interview rounds
4
Avg. package
18–40 LPA
Fresher hiring
Experienced only
HQ
Bengaluru

Process: DSA Screen → Technical × 2 → System Design → HR

CRED Interview Questions

Placement-oriented · Updated 2026
  1. 01

    What is CRED's product and why does it attract high-calibre engineering talent?

    HREasy

    Tip: CRED: credit card bill payment + rewards platform for India's creditworthy population. Engineering appeal: hypergrowth startup, hard ML problems (credit scoring, fraud), complex UX craft requirements, and a famously high engineering bar. CRED interviews are among the hardest in India — expect deep dives on every answer.

  2. 02

    Design CRED's credit card bill payment reminder and nudge system.

    TechnicalHard

    Tip: Trigger: N days before due date (personalised — 3/5/7 days based on user responsiveness history). Channel selection: push → SMS → email based on click-through rates. ML model: predict optimal send time per user (open rate maximisation). Deduplication: one nudge per day per user. A/B test message variants.

  3. 03

    How would you build a fraud detection system for CRED's high-value credit card transactions?

    TechnicalHard

    Tip: Features: transaction amount vs typical spend (z-score), new merchant category, unusual hour, device fingerprint change, location velocity (two cities in 10 min). Ensemble: rule engine (<1ms blocking obvious fraud) + gradient boosting model (5ms) + post-transaction async deep analysis. Feedback loop: dispute outcomes retrain the model.

  4. 04

    What is CRED's engineering philosophy around code elegance and simplicity?

    HREasy

    Tip: CRED is known for hiring engineers who care about craft — clean APIs, simple abstractions, readable code. In interviews: interviewers will ask you to simplify a solution you've given. Practice refactoring: after solving a problem, ask yourself 'can I make this 30% shorter without sacrificing clarity?'

  5. 05

    Write code to implement a Least Frequently Used (LFU) cache.

    TechnicalHard

    Tip: Data structures: HashMap<key, value>, HashMap<key, frequency>, HashMap<frequency, LinkedHashSet<keys>> (ordered set for LRU within same frequency), min_freq counter. Get: increment frequency, update freq maps. Put: on overflow, evict min_freq key. All operations O(1). One of the hardest LeetCode Hard cache problems.

  6. 06

    How does CRED use ML for personalised rewards and offer recommendations?

    TechnicalMedium

    Tip: Signals: transaction history (categories, merchants, amounts), reward redemption patterns, app engagement. Models: collaborative filtering for 'users like you redeem X', content-based for new users, contextual bandits for real-time offer A/B testing. CRED's engineering blog has detailed posts on their recommendation stack.

  7. 07

    Explain how you would optimise a slow database query in a production system.

    TechnicalMedium

    Tip: Process: EXPLAIN/EXPLAIN ANALYZE to see query plan → identify full table scan or index miss → add index on filter/join columns → verify with staging benchmark. Advanced: covering index (includes all queried columns), partial index (where active = true), query rewrite to avoid functions on indexed columns.

  8. 08

    Tell me about a technically challenging problem you solved that you are most proud of.

    BehavioralMedium

    Tip: CRED interviewers probe very deeply — expect follow-ups like "why that data structure?", "what would fail at 10× scale?", "how would you change this now?". Prepare to go 3–4 levels deep on your answer. Choose a problem where you made non-obvious technical decisions you can defend.

  9. 09

    What is functional programming and does CRED use any functional languages?

    TechnicalMedium

    Tip: Functional programming: immutable data, pure functions (no side effects), function composition. Languages: Haskell, Clojure, Scala, Elixir. CRED uses Clojure for some backend services — a bold choice that attracts engineers who enjoy programming as a craft. Even in Java/Go, FP concepts (streams, immutable records) improve code clarity.

  10. 10

    How would you approach building a credit score display feature that is accurate and explainable?

    SituationalMedium

    Tip: Credit score data comes from bureaus (CIBIL, Experian). Key engineering: parse bureau XML/JSON responses, map factors (payment history, utilisation, inquiries) to readable explanations, cache scores with 30-day TTL (bureau pulls are expensive), handle PII with field-level encryption.

How to prepare for a CRED interview

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

  1. 1DSA Screen→
  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 CRED mock interview

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

Start free mock interviewFree question generator

Roles you can target at CRED

  • CRED SWE questions
  • CRED BE Dev questions

Practice tools

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

Similar companies to consider

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