Recall & Review
beginner
What is Next.js?
Next.js is a React framework that helps build fast, user-friendly websites and apps with features like server-side rendering and static site generation.
Click to reveal answer
beginner
Name two main rendering methods Next.js supports.
Next.js supports Server-Side Rendering (SSR) and Static Site Generation (SSG). SSR builds pages on each request, SSG builds pages at build time.
Click to reveal answer
intermediate
How does Next.js improve website performance?
Next.js improves performance by pre-rendering pages, optimizing images, and splitting code automatically to load only what is needed.
Click to reveal answer
intermediate
What is the App Router in Next.js 13?
The App Router is a new way to organize pages and layouts using folders and files, making routing simpler and more powerful.
Click to reveal answer
beginner
Why is Next.js good for SEO?
Because Next.js can render pages on the server before sending them to the browser, search engines can read the full content easily.
Click to reveal answer
What does Next.js primarily build upon?
✗ Incorrect
Next.js is a framework built on top of React to add extra features.
Which Next.js feature helps pages load faster by building them ahead of time?
✗ Incorrect
Static Site Generation builds pages at build time for faster loading.
What is the purpose of server-side rendering in Next.js?
✗ Incorrect
Server-side rendering builds pages on the server every time a user requests them.
Which Next.js version introduced the App Router?
✗ Incorrect
Next.js 13 introduced the new App Router for better routing.
Why is Next.js good for SEO?
✗ Incorrect
Pre-rendering pages on the server makes content visible to search engines.
Explain what Next.js is and why developers use it.
Think about how Next.js helps build websites faster and better.
You got /5 concepts.
Describe the difference between Server-Side Rendering and Static Site Generation in Next.js.
Consider when pages are created and how that affects speed.
You got /4 concepts.