PGoCareerGoCareer prep tools
Home
LoginSign up
  • Java
  • Python
  • AI
  • React
  • Angular
  • PHP
  • Node.js
  • SQL
  • DSA
  • HTML
  • CSS
  • JS
  • Spring
  • ML
  • MongoDB

React · Theory

Features of React

← All stacks

Theory

6/94

Features of React

Features worth saying, not a buzzword dump: reusable components, JSX (UI next to logic), one-way data flow, a virtual DOM / reconciler so you update state not innerHTML, and hooks for state and effects in functions.

Declarative means you describe the UI for this state — React figures the DOM patches. Unidirectional means props down. Huge ecosystem: Router, Testing Library, Next.js. Honest limit: you assemble that stack yourself.

Viva: four features, one plain sentence each. Don’t recite ‘SEO friendly’ as a core React feature — SPA SEO needs extra work (SSR/meta).

Features of React — on screen — Notebook ₹49. Same Price can sit on ten cards. Components + one-way data + JSX.

Exam tip

Four features. One sentence each.

Example

// Reusable components
function Price({ amount }) {
  return <span>₹{amount}</span>;
}

function Card() {
  return (
    <article>
      <h2>Notebook</h2>
      <Price amount={49} />
    </article>
  );
}

Features of React — on screen: Notebook ₹49. Same Price can sit on ten cards. Components + one-way data + JSX.

Short notes

  • DefComponents + JSX + one-way data.
  • RuleState in → UI out.
  • TrapCalling SPA ‘SEO by default’.

Questions

1

List four React features.

2

Is SEO automatic in a CRA SPA?

Previous← create-react-appNextReact vs AngularJS →
P

GoCareerGo

Utilities · Preparation Hub · Resume · CV · Tools — one workspace.

Workspace

DashboardProfilePreparation HubResume builderCV builderCareer planning

PDF Tools

Merge PDFSplit PDFCompress PDFImage to PDFAll toolsJobs

Image & QR

Compress ImageResize ImageQR ScannerQR GeneratorBlogIT interview prep

Company

FAQFeedbackContactPrivacyTermsSitemap

© 2026 GoCareerGo. Keep moving forward.