Tag view

#interview

Cross-subject tag search for related interview cards.

Clear

Results update as you type. Press / to jump straight into search.

Tagged with interview

5 cards

Python Medium Theory

Common Python comparison topics: set vs list, append vs extend, remove vs pop vs del, sort() vs sorted(), @staticmethod vs @classmethod, and generator vs iterator

Interview prep often comes down to comparing similar tools and explaining when each one is the better fit.

  • Lists preserve order, sets optimize membership
  • append adds one item while extend adds many
  • sorted returns a new list while sort mutates in place

Common Python comparison topics: set vs list, append vs extend, remove vs pop vs del, sort() vs sorted(), @staticmethod vs @classmethod, and generator vs iterator

React Medium Theory

Common React interview comparisons

React interviews often rely on contrast questions such as props vs state, state vs ref, useEffect vs useLayoutEffect, and Context vs Redux.

  • Comparisons reveal trade-offs
  • Many pairs differ by ownership, timing, or performance
  • Use cases matter more than memorized slogans

Common React interview comparisons

React Easy Theory

Must-have React interview questions

The must-know React interview set revolves around React basics, JSX, props, state, hooks, keys, reconciliation, Context, Redux, routing, data fetching, lazy loading, Suspense, error boundaries, StrictMode, SSR vs CSR, hydration, and performance.

  • Know the definitions first
  • Know the trade-offs second
  • Tie answers back to real component behavior

Must-have React interview questions

React Hard Theory

React coding-adjacent design questions

Many React interviews ask you to reason about UI architecture problems such as search boxes, large lists, debounced input, reusable forms, caching, modal state, theme switching, and optimistic updates.

  • Think in data flow, state ownership, and rendering costs
  • Reuse logic with hooks or composition
  • Separate server state, UI state, and transient interaction state

React coding-adjacent design questions