Quizzes

Browse the public Catalog and filter quizzes by Tag.

Filter by tags
/
12 questions

Auth & Sessions at Scale

Authentication is where security and system design collide. This quiz contrasts stateful sessions with stateless JWTs, then digs into the consequences: where to store tokens...

system-design
security
http
10 questions

What the Cache Forgets: LRU & Eviction in SWR/React Query

You reach for TanStack Query and SWR every day — but do you know when they evict, and why a hand-rolled memo Map quietly leaks memory? Trace LRU eviction (hash map + doubly...

react
frontend
performance
data-structures
30 questions

Caching at Every Layer

Follow one request from the browser outward through every cache it can hit — the HTTP cache (Cache-Control, ETag, Last-Modified, revalidation), the CDN edge, the client query...

system-design
http
performance
38 questions

Counterintuitive Probability

Monty Hall, the birthday paradox, the gambler's fallacy, and other places where careful probability overturns gut instinct. Each question pairs a tempting wrong answer with an...

mathematics
everyday-life
12 questions

CSS Cascade, Specificity & Inheritance

Read CSS conflicts the way the engine does: specificity by column, why @layer order outranks specificity (and how !important reverses it), unlayered-beats-layered, inherited...

css
frontend