Recall & Review
beginner
What does SSR stand for in Svelte page options?
SSR means Server-Side Rendering. It means the page is built on the server and sent fully formed to the browser.
Click to reveal answer
beginner
What is CSR in the context of Svelte page options?
CSR means Client-Side Rendering. The page is built in the browser using JavaScript after the initial load.
Click to reveal answer
beginner
What does prerendering mean in Svelte page options?
Prerendering means generating the page as static HTML at build time, so it loads very fast without server work on each request.
Click to reveal answer
intermediate
How do SSR and prerendering differ in Svelte?
SSR builds the page on each request on the server. Prerendering builds the page once at build time as static HTML.
Click to reveal answer
intermediate
Why might you choose CSR over SSR or prerendering?
CSR is good for very dynamic pages where content changes often and you want fast interactions without server delays.
Click to reveal answer
Which page option sends fully built HTML from the server on every request?
✗ Incorrect
SSR (Server-Side Rendering) builds the page on the server for each request.
Which option builds the page once during build time as static HTML?
✗ Incorrect
Prerendering generates static HTML at build time.
Which rendering method relies mostly on JavaScript running in the browser?
✗ Incorrect
CSR (Client-Side Rendering) builds the page in the browser using JavaScript.
What is a key benefit of prerendering pages?
✗ Incorrect
Prerendered pages load fast because they are static HTML.
When is CSR a better choice than SSR or prerendering?
✗ Incorrect
CSR is good for dynamic pages where content changes often and user interaction is important.
Explain the differences between SSR, CSR, and prerendering in Svelte page options.
Think about when and where the page is built.
You got /3 concepts.
Describe a scenario where you would choose prerendering over SSR or CSR.
Consider sites like blogs or documentation.
You got /3 concepts.