Skip to content

Frontend Performance

Master Frontend Performance with 39 free flashcards. Study using spaced repetition and focus mode for effective learning in Programming.

🎓 39 cards ⏱️ ~20 min Intermediate
Study Full Deck →
Share: 𝕏 Twitter LinkedIn WhatsApp

🎯 What You'll Learn

Preview Questions

12 shown

What is frontend performance?

Show ▼

Frontend performance is how quickly and smoothly a web application loads, renders, and responds to user input.

Why does frontend performance matter?

Show ▼

It affects user satisfaction, accessibility, SEO, conversion, and perceived product quality.

What is Time to First Byte (TTFB)?

Show ▼

TTFB measures how long it takes the browser to receive the first byte of the response after making a request.

What is Largest Contentful Paint (LCP)?

Show ▼

LCP measures when the largest visible content element finishes rendering, indicating perceived load speed.

What is Interaction to Next Paint (INP)?

Show ▼

INP measures how responsive a page feels by tracking the delay between an interaction and the next visual update.

What is Cumulative Layout Shift (CLS)?

Show ▼

CLS measures unexpected movement of page elements during load or interaction.

Why should images be optimized?

Show ▼

Images are often the heaviest assets on a page, so compression, resizing, and modern formats can cut load time significantly.

What is lazy loading?

Show ▼

Lazy loading delays non-critical resources until they are needed, such as images below the fold.

What is code splitting?

Show ▼

Code splitting breaks JavaScript into smaller chunks so users download only what is needed for the current page.

Why is bundle size important?

Show ▼

Large bundles slow parsing, compilation, and execution in addition to network transfer.

What is tree shaking?

Show ▼

Tree shaking removes unused exports from a bundle during build so less code ships to the browser.

What is render blocking?

Show ▼

Render blocking happens when the browser must wait for certain resources like CSS or synchronous JavaScript before painting content.

🎓 Start studying Frontend Performance

🎮 Study Modes Available

🔄

Flashcards

Flip to reveal

🧠

Focus Mode

Spaced repetition

Multiple Choice

Test your knowledge

⌨️

Type Answer

Active recall

📚

Learn Mode

Multi-round mastery

🎯

Match Game

Memory challenge

Related Topics in Programming

📖 Learning Resources