0
0
Svelteframework~5 mins

Page options (SSR, CSR, prerender) in Svelte - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
ASSR
BCSR
CPrerender
DNone of the above
Which option builds the page once during build time as static HTML?
APrerender
BCSR
CSSR
DDynamic Rendering
Which rendering method relies mostly on JavaScript running in the browser?
ASSR
BStatic Site Generation
CCSR
DPrerender
What is a key benefit of prerendering pages?
APages update on every request
BPages load very fast with no server delay
CPages require heavy JavaScript
DPages are built in the browser
When is CSR a better choice than SSR or prerendering?
AFor SEO optimization
BFor pages that need fast server response
CFor static content that never changes
DFor very dynamic pages with frequent updates
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.