Pick a focused question that fits your time, stack, and interview goal.
How much time do you have?
Show one-drill sessions you can finish now.
1345 results
Page 33 of 57
Applies an immediate reversible mutation, blocks overlapping writes, and restores the previous state on failure.
Carries the version observed by the client into a conditional update and returns an explicit conflict instead of silently overwriting newer data.
Implements a database-backed idempotency boundary that replays one response and rejects key reuse with a different request.
Stores an idempotency key, request hash, and response in the same transaction as the created resource.
Uses a scoped idempotency key, request hash, unique constraint, and one transaction to create an order exactly once from the API perspective.
Implements a small in-memory fixed-window rate limiter with per-key counters.
Implements a small LRU cache using a dictionary plus linked list for O(1) get and put.
Implements descending keyset pagination in LINQ using a compound timestamp-and-id cursor.
Explains debounce, cancellation, stale-response protection, loading indicators, and backend query safety for search UI.
Explains stable EF Core pagination using cursor predicates, deterministic ordering, and index-aligned queries.
Builds descending keyset pagination with a unique tie-breaker, opaque cursor, limit-plus-one query, and stable next page.
Implements descending cursor pagination with a unique tie-breaker, bounded projection query, and next-cursor detection.
Processes a large import in chunks with fresh DbContexts, idempotent keys, cancellation, and bounded tracker growth.
Builds a story about improving code quality incrementally while still delivering product value.
Builds a story about improving team workflow with lightweight, useful process changes.
Explains how to respond to a production incident caused by a bad release.
Explains `Include` versus `Select` in EF Core with practical .NET data-access examples and production trade-offs.
Builds a concrete story about earning alignment through evidence, listening, and a low-risk path rather than positional power.
Verifies the exact request bytes, rejects stale signatures, deduplicates event ids, and queues processing durably.
Uses inheritance only for stable behavioral subtyping and tests whether derived objects preserve the promises callers rely on.
Explains how to inspect EF Core generated SQL and connect LINQ shape to database execution behavior.
Instruments an AI workflow with correlated stage spans, low-cardinality versions, usage and outcome signals, and explicit content-capture controls.
Uses WebApplicationFactory with test-only authentication and isolated dependencies to exercise the real ASP.NET Core pipeline.
Uses the real ASP.NET Core pipeline while replacing only environment-specific boundaries deliberately.