Sheet 09 · QuizzesSurveyed 2026

System Design & Architecture: Scalability & Resilience

20 QuestionsAdvancedPublished:

System Design & Architecture: Scalability & Resilience

Up to 20 questions, shuffled on every run

Quiz Configuration
Enterto start

Welcome to the System Design & Architecture quiz! Test your knowledge on scalability, reliability, performance, trade-offs, distributed systems patterns, and architectural decisions for production systems. Each question has a timer and hints to guide you. Good luck!

Answer key and explanations20 questions

The quiz above draws 20 questions at random from these 30, so a second attempt will not be the same run. Everything in the pool is listed here.

  1. What is scalability in the context of system design?

    AnswerThe ability of a system to handle increased load by adding resources

  2. What is latency?

    AnswerThe total time taken for a request to travel from client to server and back

  3. What is throughput?

    AnswerThe volume of work or number of requests processed in a given period

  4. What is availability?

    AnswerThe proportion of time a system remains functional and accessible

  5. What is consistency in distributed systems?

    AnswerThe requirement that all nodes see the same data at the same time

  6. What is partitioning (sharding)?

    AnswerDividing a large dataset into smaller chunks across multiple nodes

  7. What is a single point of failure (SPOF)?

    AnswerAny component whose failure causes the entire system to stop functioning

  8. What is eventual consistency?

    AnswerA model where data will be consistent across all nodes given enough time

  9. What is CQRS (Command Query Responsibility Segregation)?

    AnswerAn architectural pattern that uses different models for reading and writing data

  10. What is event sourcing?

    AnswerA pattern that stores the state of a system as a sequence of immutable events

  11. What is rate limiting?

    AnswerThe practice of controlling the rate of requests sent or received by a network

  12. What is bulkhead isolation?

    AnswerA pattern that partitions resources to prevent a failure in one from affecting others

  13. What is the circuit breaker pattern?

    AnswerA mechanism to stop requests to a failing service to allow it to recover

  14. What is the CAP theorem?

    AnswerThe principle that a distributed system can only provide two of three specific guarantees

  15. What is the BASE model?

    AnswerA model focusing on availability and eventual consistency over strict ACID rules

  16. What is database sharding?

    AnswerThe horizontal partitioning of data across multiple independent database instances

  17. What is database denormalization?

    AnswerAdding redundant data to a schema to improve read performance by avoiding joins

  18. What is the Cache-Aside strategy?

    AnswerA pattern where the application code is responsible for managing the cache state

  19. What are Bloom Filters?

    AnswerA space-efficient probabilistic data structure used to test if an element is in a set

  20. What is consistent hashing?

    AnswerA hashing technique that minimizes key remapping when the number of slots changes

  21. What is the Saga pattern?

    AnswerA sequence of local transactions where each updates data and triggers the next

  22. What is the difference between Token Bucket and Leaky Bucket?

    AnswerToken Bucket allows for bursts of traffic, while Leaky Bucket enforces a steady rate

  23. What is Hexagonal Architecture?

    AnswerA pattern that isolates core logic from external concerns using ports and adapters

  24. What are Bounded Contexts in DDD?

    AnswerExplicit boundaries within which a specific domain model is defined and applicable

  25. What are the three pillars of Observability?

    AnswerLogs, Metrics, and Traces

  26. When is a Time-Series Database (TSDB) most appropriate?

    AnswerFor handling massive volumes of timestamped data like metrics or sensor readings

  27. What is Semantic Versioning (SemVer)?

    AnswerA versioning scheme using MAJOR.MINOR.PATCH to signal the nature of changes

  28. What is an idempotency key?

    AnswerA unique value sent by a client to ensure a request is only processed once

  29. Why is Average Latency often a misleading metric?

    AnswerIt hides outliers (tail latency) that significantly affect user experience

  30. What is Distributed Consensus (e.g., Raft)?

    AnswerAn algorithm for achieving agreement on a single data value across a cluster

Was this useful?

You might also enjoy

More posts on similar topics

Advanced API Architecture & Design Patterns

Advanced API Architecture & Design Patterns

Welcome to the Advanced API Architecture Quiz! This quiz will test your knowledge of advanced API design patterns, including REST, gRPC, webhooks, API versioning, caching strategies, pagination techni

GraphQL Fundamentals: Queries, Mutations & Schema Design

GraphQL Fundamentals: Queries, Mutations & Schema Design

Welcome to the GraphQL Basics Quiz! Learning GraphQL well matters for building efficient, flexible APIs that let clients request exactly what they need. This quiz will test your understanding of core

API Security & Authentication: Protecting Your APIs

API Security & Authentication: Protecting Your APIs

Welcome to the API Security & Authentication Quiz! This quiz will test your knowledge of key concepts and best practices for securing APIs. Each question is designed to challenge your understanding of

Multi-Cloud Strategy & Architecture

Multi-Cloud Strategy & Architecture

Welcome to the Multi-Cloud Strategy & Architecture Quiz! Test your knowledge on multi-cloud concepts, vendor lock-in, cloud-agnostic design, Kubernetes, multi-cloud storage, disaster recovery, and mor

Advanced Frontend Patterns: State Management & Performance

Advanced Frontend Patterns: State Management & Performance

Master advanced frontend architecture: state management (Redux, Zustand), performance optimization, code splitting, lazy loading, and responsive design patterns.

Database Design & Patterns

Database Design & Patterns

Welcome to the Database Design & Patterns Quiz! Test your knowledge on database normalization, indexing, query optimization, ACID properties, sharding, replication, and more. Each question has a hint

6 related posts