wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Responsive Web Design Worksheet

Total questions: 20

Worksheet time: 15mins

Name
Class
Date
1.

What is the main goal of responsive web design?

a)

To create websites only for desktop users

b)

To create multiple versions of a site for each device

c)

To allow websites to adapt to different devices and screen sizes

d)

To improve website animations

2.

Which of the following is a key benefit of responsive web design?

a)

Slower website loading time

b)

Inconsistent user experience

c)

Enhanced user experience

d)

Increased development costs

3.

Why is responsive design important for SEO?

a)

Search engines prefer text-only websites

b)

It improves mobile-friendliness, which boosts rankings

c)

It increases server response time

d)

It hides website content from crawlers

4.

What is the purpose of the viewport meta tag in responsive web design?

a)

To define background colors

b)

To control how a webpage scales and fits on devices

c)

To load external CSS files

d)

To disable zooming on mobile devices

5.

Which of the following is the correct syntax for a media query?

a)

@media (min: width 768px)

b)

@media screen and (min-width: 768px)

c)

@media (screen width 768px)

d)

@media min-width=768px

6.

What media feature is most commonly used in responsive design?

a)

orientation

b)

height

c)

color

d)

width

7.

What does the term “fluid grid” mean in responsive design?

a)

A. A grid that uses fixed pixel values

b)

B. A grid that uses percentage-based widths to adapt to screen size

c)

C. A grid that uses only 12 columns

d)

D. A static layout grid

8.

Which CSS property ensures images resize proportionally within their container?

a)

width: auto;

b)

max-width: 100%;

c)

overflow: hidden;

d)

display: block;

9.

What does max-width: 767px in a media query target?

a)

Large desktop screens

b)

Small devices like smartphones

c)

Medium-sized tablets

d)

Projector screens

10.

What is the function of min-width in a media query?

a)

It hides content below a specific width

b)

It applies styles to devices larger than a specified width

c)

It scales text automatically

d)

It adjusts image resolution

11.

What happens when no viewport meta tag is included in a webpage?

a)

The website loads faster

b)

The layout appears zoomed out or improperly scaled on mobile devices

c)

The design becomes more responsive automatically

d)

It improves mobile readability

12.

Which unit type is best for creating fluid layouts?

a)

px

b)

em

c)

%

d)

pt

13.

What happens to elements inside a container when using a flexible layout with float and percentages?

a)

They overlap

b)

They adjust width relative to the container

c)

They remain fixed

d)

They disappear

14.

The effect of hiding a sidebar with display: none; in a small-screen media query is:

a)

The sidebar is completely removed from the layout and not visible.

b)

The sidebar becomes transparent but still takes up space.

c)

The sidebar is minimized to a small icon.

d)

The sidebar is hidden but still takes up space in the layout.

15.

What CSS rule should you use to stack columns vertically on small screens?

a)

float: right;

b)

width: 100%; and float: none;

c)

display: inline;

d)

position: absolute;

16.

Why should designers test responsive websites across different devices?

a)

To ensure identical behavior in all browsers

b)

To verify consistent responsiveness and usability

c)

To check if JavaScript is working

d)

To debug back-end logic

17.

What is the main difference between adaptive and responsive design?

a)

Adaptive uses fixed breakpoints; responsive uses fluid grids

b)

Responsive is for print media; adaptive is for screens

c)

Adaptive adjusts automatically without CSS

d)

Responsive only works on mobile devices

18.

What will happen if a media query condition is not met?

a)

The browser crashes

b)

The CSS rules inside it are ignored

c)

The layout breaks

d)

The styles still apply partially

19.

The principle that ensures content resizes proportionally on all screens is called:

a)

Responsiveness

b)

Accessibility

c)

Usability

d)

Interactivity

20.

Which of the following uses relative units to maintain proportionate resizing across different screen sizes?

a)

Fixed layouts

b)

Fluid grids

c)

Static positioning

d)

Absolute dimensions