What does CRUD mean for a MongoDB-backed API?
Simple meaning
CRUD is Create, Read, Update, and Delete.
Open the full page for Why, Steps, Example and Key takeaway.
Panel-ready MERN Full Stack questions for freshers and experienced developers. Practice at Coding Cadre in Faridabad, or Online from Delhi NCR.
CRUD is Create, Read, Update, and Delete.
Open the full page for Why, Steps, Example and Key takeaway.
A schema defines fields, types, required flags, defaults, and indexes for a collection.
Open the full page for Why, Steps, Example and Key takeaway.
React is a library for building user interfaces from components.
Open the full page for Why, Steps, Example and Key takeaway.
JSX is a syntax that looks like HTML inside JavaScript.
Open the full page for Why, Steps, Example and Key takeaway.
Props are inputs passed from a parent and should be treated as read-only.
Open the full page for Why, Steps, Example and Key takeaway.
useState returns the current value and a setter that queues a re-render.
Open the full page for Why, Steps, Example and Key takeaway.
useEffect runs side effects after render, such as fetching data or attaching listeners.
Open the full page for Why, Steps, Example and Key takeaway.
A component is a function that returns UI from props and state.
Open the full page for Why, Steps, Example and Key takeaway.
The virtual DOM is React's in-memory tree of UI.
Open the full page for Why, Steps, Example and Key takeaway.
Class components use this.state and lifecycle methods.
Open the full page for Why, Steps, Example and Key takeaway.
key helps React identify which item changed, was added, or was removed.
Open the full page for Why, Steps, Example and Key takeaway.
Node handles many concurrent I/O waits on one thread with a non-blocking event loop.
Open the full page for Why, Steps, Example and Key takeaway.
It pins exact dependency versions for reproducible installs.
Open the full page for Why, Steps, Example and Key takeaway.
It parses JSON bodies into req.body.
Open the full page for Why, Steps, Example and Key takeaway.