Skip to content
InterviewEra
Loading account navigation
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

Product

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

Tools

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

Resources

  • Interview Questions
  • All Resources
  • Blog
  • Community Hub
  • DSA Topic Map
  • Placement Guide
  • STAR Guide

Company

  • What is InterviewEra
  • About Us
  • Pricing
  • Contact
  • Privacy Policy
  • Terms & Conditions
  • Refund Policy

© 2026 InterviewEra. All rights reserved.

Privacy Policy|Terms & Conditions|Refund Policy
|Ranchi, Jharkhand, India
Interview Questions›CRED›BE Dev

CRED · engineering

CRED Backend Developer Interview Questions 2026

Preparation guide for Backend Developer positions at CRED (Dreamplug Technologies). Covers their DSA Screen → Technical × 2 → System Design → HR process with technical, behavioral, and HR questions.

Interview rounds
4
Avg. package
18–40 LPA
Role type
engineering

CRED Backend Developer Interview Questions

Placement-oriented · Updated 2026
  1. 01

    What is REST? What are its key architectural constraints?

    TechnicalEasy

    Tip: Name the 6 constraints: client-server, stateless, cacheable, uniform interface, layered system, code on demand (optional). Statelessness is the one interviewers probe most.

  2. 02

    What is the difference between SQL and NoSQL databases? When would you choose each?

    TechnicalEasy

    Tip: SQL: structured schema, ACID, relational. NoSQL: flexible schema, BASE, horizontal scale. Choose SQL for transactional data; NoSQL for high-write, schema-flexible workloads like logs or feeds.

  3. 03

    What is connection pooling and why is it important?

    TechnicalMedium

    Tip: A pool reuses existing DB connections instead of opening a new one per request. Critical at scale — opening a TCP + auth handshake takes ~100ms. HikariCP (Java) and pg-pool (Node) are common implementations.

  4. 04

    What is the N+1 query problem? How do you solve it?

    TechnicalMedium

    Tip: N+1 occurs when fetching a list of N records triggers N additional queries for related data. Fix with eager loading (JOIN), DataLoader batching, or selecting only needed fields. Common ORM trap.

  5. 05

    How do you implement JWT-based authentication in a REST API?

    TechnicalHard

    Tip: Login endpoint returns signed JWT (header.payload.signature). Client sends it in `Authorization: Bearer <token>`. Server verifies signature with secret key — no DB lookup needed per request. Store refresh tokens in DB for revocation.

  6. 06

    What is caching? Explain write-through, write-behind, and cache-aside strategies.

    TechnicalHard

    Tip: Cache-aside (lazy loading): app checks cache, on miss loads from DB and populates. Write-through: write to cache and DB simultaneously. Write-behind: write to cache, async flush to DB. Cache-aside is most common in practice.

  7. 07

    What is database indexing? When would you NOT add an index?

    TechnicalMedium

    Tip: Indexes speed up reads but slow down writes (index must be updated on every INSERT/UPDATE). Avoid on: small tables (full scan is faster), columns with low cardinality (boolean), tables with frequent bulk writes.

  8. 08

    Tell me about a backend service you optimised. What was the bottleneck and how did you fix it?

    BehavioralMedium

    Tip: Structure: profiling approach, root cause (DB query, serialisation, network), solution, measurable improvement. Avoid vague answers like "I added a cache" without showing you identified the actual bottleneck first.

  9. 09

    An API endpoint returns 503 errors under high load. Walk me through your investigation.

    SituationalMedium

    Tip: Check: are downstream services (DB, cache, external APIs) healthy? Is the connection pool exhausted? Is the process running out of memory? Is the request queue full? Then address the bottleneck, not the symptom.

  10. 10

    How would you design a URL shortener backend?

    TechnicalHard

    Tip: Key decisions: hash function (Base62 of MD5 or counter), storage (Redis for fast reads + RDB for persistence), collision handling, expiry, custom slugs. Talk through scale requirements before jumping to implementation.

  11. 11

    What is the difference between authentication and authorisation?

    TechnicalEasy

    Tip: Authentication: verifying WHO you are (login). Authorisation: verifying WHAT you are allowed to do (permissions). A logged-in user may be authenticated but not authorised to access admin routes.

  12. 12

    Why did you choose backend development, and what motivates you to stay current with it?

    HREasy

    Tip: Show genuine interest: performance, distributed systems, data integrity challenges. Mention specific things you follow — a blog, open source project, or recent spec. Generic answers are penalised.

Practice answering, not just reading

Take a full scored mock interview tailored to your resume. Get feedback on technical depth, clarity, structure, confidence, and relevance — free to start.

Start free mock interviewFree question generator

Related Guides

  • CareerAmazon SDE I Intern Interview Experience 2026 (University Hiring)Editorial synthesis of Amazon SDE Intern OA, interview rounds, Leadership Principles, and a 30-day preparation roadmap for 2026 university hiring.
  • Software EngineeringTCS Interview Questions & Hiring Guide (2026)TCS interview questions and hiring guide — eligibility, NQT Foundation/Advanced pattern, Ninja/Digital/Prime salary, selection process, resume tips, and a 30-day prep plan.
  • CareerGoogle Apprenticeship 2026: Eligibility, Salary, Last Date & India GuideGoogle Apprenticeship applications open in India — eligibility, salary, Aug 3 2026 deadline, and application process for all four tracks.
  • Software EngineeringWipro Careers, Hiring & Interview Hub (2026)Wipro careers hub — NLTH, Elite NLTH, WILP, Turbo, recruitment calendar, salary bands, eligibility, and role interview guides.
  • Interview StrategyAgentic AI Interview Round (2026): The Ultimate GuideMaster agentic AI interview rounds — evaluation rubrics, 50+ questions, India trends, prep roadmaps, and sample workflows for AI-assisted coding interviews.
  • Software EngineeringSoftware Engineer Interview Questions (2026)SWE prep hub — DSA, system design, OOPs, hiring process, company comparison, 30-day roadmap, and mock interview CTA.

More CRED roles

  • CRED SWE questions

Backend Developer interviews at other companies

  • Swiggy BE Dev questions
  • Zomato BE Dev questions
  • Razorpay BE Dev questions
  • Meesho BE Dev questions

Browse related content

  • All CRED questions
  • All Backend Developer questions
  • Interview questions hub

Practice tools

  • BE Dev question generator
  • BE Dev ATS checker
  • STAR answer builder