wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Unit 10: Web Development Fundamentals

Total questions: 30

Worksheet time: 15mins

Name
Class
Date
1.

HTML stands for ...

a)

HyperText Makeup Language

b)

Hyperlinks and Text Markup Language

c)

Home Tool Markup Language

d)

HyperText Markup Language

2.

CSS stands for ...

a)

Computer Style Sheets

b)

Cascading Style Sheets

c)

Creative Style Sheets

d)

Colorful Style Sheets

3.

JavaScript is a __________ that works alongside with HTML and CSS.

a)

structuring language

b)

styling language

c)

programming language

d)

markup language

4.

The correct HTML tag for the largest heading is ...

a)

<header>

b)

<h1>

c)

<h2>

d)

<h3>

5.

The correct CSS property name to change text color is ...

a)

text-color

b)

font-color

c)

style-color

d)

color

6.

Which character is used to indicate an end tag?

a)

/

b)

<

c)

:

d)

;

7.

CSS describes the _______ of the website.

a)

structure

b)

programming

c)

styling

d)

markup

8.

What are the two ways that JavaScript is placed into HTML?

a)

External JS and Internal JS

b)

External JS and Inline JS

c)

Internal JS and Inline JS

d)

External JS only

9.


What is the HTML attribute that is used for creating a link?

a)

ALT

b)

SRC

c)

HREF

d)

URL

10.

What is the correct CSS property name to change font?

a)

font

b)

font-family

c)

font-type

d)

font-style

11.

HTML describes the _________ of the website.

a)

programming

b)

styling

c)

structure

d)

interactivity

12.

What character starts and ends a declaration in CSS?

a)

square brackets

b)

arrows

c)

parentheses

d)

squiggly/curly brackets

13.

What are the two places that JavaScript is placed within HTML?

a)

<head> and <body> sections

b)

<head> and <section> sections

c)

<header> and <p> sections

d)

<header> and <body> sections

14.

What is the HTML tag that creates a numbered list?

a)

<ul>

b)

<li>

c)

<ol>

d)

<nl>

15.

What character separates the property name and value in CSS?

a)

space

b)

semicolon

c)

colon

d)

squiggly/curly brackets

16.

Why is web development important?

a)

Gain access to information and resources quickly

b)

Provides individuals and businesses with the power to establish offline presence

c)

Provide and receive global disconnection

d)

All of the given options

17.

What are the ways to insert CSS into HTML?

a)

External and Internal only

b)

External, Internal, and Online

c)

External, Internal, and Inline

d)

Internal and Inline only

18.

HTML DOM stands for ____________ and is a _______ that is constructed like a __________________.

a)

HTML Document Object Modification, Model, and Tree of Objects

b)

HTML Document Objective Momentum, Model, Tree of Objectives

c)

HTML Document Overview Model, Model, and Tree of Overview

d)

HTML Document Object Model, Model, and Tree of Objects

19.

What is the HTML tag that defines and creates navigation links?

a)

<link>

b)

<nav>

c)

<a>

d)

<links>

20.

JavaScript statements contain _____, _____, _____, _____, and _____, and each statement is separated by a _____.

a)

Values, Operators, Expressions, Keywords, Comments, and Semicolon

b)

Values, Operators, Expressions, Keywords, Comments, and Colon

c)

Values, Semicolons, Expressions, Keywords, Colons, and Operator

d)

Values, Operators, Expressions, Keywords, Colons, and Comment

21.

What is the HTML attribute that displays as a tooltip when the mouse hovers over the element?

a)

Lang

b)

Style

c)

Title

d)

Href

22.

What are the two elements found in the CSS Syntax?

a)

Selector and Declaration

b)

Property Name and Value

c)

HTML and Declaration

d)

Selector and Description

23.

What power does JavaScript HTML DOM have?

a)

The power to remove HTML elements and attributes

b)

The power to change HTML elements attributes and CSS styles

c)

The power to add new HTML elements and attributes

d)

All of the given options

24.

What is the correct HTML tag for inserting an image?

a)

<image style="image.gif" alt="MyImage">

b)

<image src="image.gif" alt="MyImage">

c)

<img src="image.gif" alt="MyImage">

d)

<img href="image.gif" alt="MyImage">

25.

Which of the following is one of JavaScript's eight data types?

a)

Array

b)

Defined

c)

Date

d)

None of the given options

26.

Where in an HTML document is the correct place to refer to an external style sheet?

a)

In the <head> section

b)

In the <body> section

c)

Both in the <head> and <body> sections

d)

At the end of the document

27.

Inside which HTML tag do we put the JavaScript?

a)

<scripting>

b)

<style>

c)

<script>

d)

<javascript>

28.

What is the correct JavaScript syntax to change the content of the HTML element below?

<p id="demo">This is a demonstration.</p>

a)

document.getElement("p").innerHTML = "Hello World!";

b)

#demo.innerHTML = "Hello World!";

c)

document.getElementByName("p").innerHTML = "Hello World!";

d)

document.getElementById("demo").innerHTML = "Hello World!";

29.

What is the correct HTML for adding a background color?

a)

<body style="bg="yellow">

b)

<background>yellow</background>

c)

<body bg="yellow;">

d)

<body style="background-color: yellow;">

30.

True or False: Inline elements are normally displayed without starting a new line.

a)

True

b)

False