Full Stack track

Full Stack developer interview questions

Panel-ready MERN Full Stack questions for freshers and experienced developers. Practice at Coding Cadre in Faridabad, or Online from Delhi NCR.

226 Qs
102 Moderate React Full Stack

What does React.memo do?

Short take Full answer on next page

Simple meaning

React.memo skips re-rendering a component when its props are shallowly equal.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
103 Moderate React Full Stack

How should a React page fetch data from Express?

Short take Full answer on next page

Simple meaning

Trigger the request in useEffect or a data library such as React Query, handle loading and error states, and cancel or ignore stale responses.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
105 Moderate React Full Stack

What is a custom hook and why write one?

Short take Full answer on next page

Simple meaning

A custom hook is a function starting with use that calls other hooks.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
107 Moderate Auth Full Stack

How do SameSite cookies relate to CSRF in a MERN app?

Short take Full answer on next page

Simple meaning

SameSite=Lax or Strict stops the browser from sending cookies on most cross-site requests, which blocks classic CSRF.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
108 Moderate Auth Full Stack

How does bcrypt salting protect stored passwords?

Short take Full answer on next page

Simple meaning

A salt is random data mixed into the hash so two users with the same password get different hashes.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
110 Moderate Auth Full Stack

What is OAuth 2.0 at a high level for a MERN login?

Short take Full answer on next page

Simple meaning

OAuth lets the user sign in with a provider such as Google without sharing their password with you.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
112 Moderate Deployment Full Stack

What problem does Docker solve for a MERN app?

Short take Full answer on next page

Simple meaning

A Dockerfile packages Node, dependencies, and start command so the app runs the same on every machine.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
114 Moderate Deployment Full Stack

What is a reverse proxy in front of Node?

Short take Full answer on next page

Simple meaning

A reverse proxy such as nginx receives public traffic and forwards it to Express.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
115 Moderate Deployment Full Stack

How do you restart a Node API with less downtime?

Short take Full answer on next page

Simple meaning

A process manager can start a new worker, wait until it listens, then stop the old one.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
118 Moderate Testing Full Stack

How do you mock fetch or axios in frontend tests?

Short take Full answer on next page

Simple meaning

Replace the network layer with a stub that returns canned JSON so tests stay fast and offline.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
119 Moderate Testing Full Stack

How do you test Express routes with Supertest?

Short take Full answer on next page

Simple meaning

Supertest issues HTTP requests against your Express app without opening a real port.

Open the full page for Why, Steps, Example and Key takeaway.

Read full answer Example · Mistake · Say this
Prev Page 6 of 12 Next
Chat with us