Images — Quiz

Answer all 5 questions, then submit. You need 60% to pass. Log in to save progress.

Question 1
Which attribute provides a text description of an image?
A src
B alt
C title
D caption
Question 2
Is <img> a void element?
A Yes — it has no closing tag
B No — you must write </img>
C Only when it has alt text
D Only inside a paragraph
Question 3
For a purely decorative image, what should alt be?
A A long description
B Left out entirely
C An empty value: alt=""
D The file name
Question 4
Which CSS rule keeps an image from overflowing its container?
A img { width: 100px; }
B img { max-width: 100%; height: auto; }
C img { display: none; }
D img { float: left; }
Question 5
What does loading="lazy" do?
A Blurs the image until clicked
B Loads off-screen images only when the user scrolls near them
C Makes the image load faster always
D Disables the image on mobile