WorksheetsWeb Development I State Skills Test Review
Total questions: 100
Worksheet time: 50mins
Which license enables the free distribution of an otherwise copyrighted work, giving users certain rights to use it?
Open Source License
Acceptable Use Policy (AUP)
Intellectual Property Agreement
Creative Commons License
What is the primary purpose of an Acceptable Use Policy (AUP) in a school or organization setting?
To set the criteria for website validation by the W3C
To define the way in which a network may be used
To protect all original creations from copyright infringement
To provide guidelines for CSS Box Model implementation
Which of the following is considered part of ethical behavior as it relates to digital citizenship?
Using an inline style for all CSS formatting
Respecting Privacy and following Anti-Spamming Laws
Only using absolute links in all web documents
Using tables for all webpage layouts
When must a student obtain permission for non-original work used on a website?
Never, if the content is found on a public search engine
Only if the file size is larger than 1MB
When the work is under standard copyright and not explicitly licensed for free use
Only if the website is coded using a multi-page structure
What does the term 'Netiquette' specifically refer to?
The naming conventions for website files
The proper way to set up a viewport meta tag
The correct or acceptable way of communicating on the Internet
The process of validating a website against W3C standards
Which of the following elements is required in the foundation of every HTML document?
<article>
<html>
<style>
<aside>
What is the correct declaration that should appear as the very first line of an HTML5 document?
<!DOCTYPE HTML>
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
Which element represents a container for introductory content or a set of navigational links for a document or section?
<footer>
<main>
<section>
<header>
What is the primary characteristic of a semantic element in HTML5?
It is always an inline-level element
It clearly describes its meaning to both the browser and the developer
It does not allow the use of attributes
It is only used for tabular data
Which of the following is an example of a non-semantic element that 'Tells nothing about its content'?
<footer>
<section>
<div>
<nav>
In the HTML foundation, where should the
Inside the
tagsBefore the declaration
Inside the
tagsAfter the
Which HTML element is used to define the main, unique content of the page, excluding content like headers, footers, and navigation?
<article>
<div>
<section>
<main>
What is the best practice for nesting elements in HTML?
Always nest an inline element inside a block element
Using a new line for every nested tag to keep code tidy
Ensuring that elements are closed in the reverse order that they were opened
Nesting all elements inside a single
Why is it considered a best practice to consistently use lowercase text for all HTML element names?
It helps the page load faster on all web browsers
It ensures the code is easily validated and conforms to W3C standards
Because only block-level elements are case-sensitive
To prevent accidental use of reserved special characters
The process of ensuring that webpages conform to the norms or standards defined by various organizations is called:
Minification
Deployment
Validation (W3C)
Normalization
What is the purpose of the element in the
section of an HTML document?To define a horizontal line break in the body content
To insert an image that is crucial for SEO
To include information about the page, such as keywords and descriptions
To define the section of the document used for navigation links
Which type of link contains the exact location on the internet and starts with a protocol (e.g., http, https, ftp)?
Relative Link
Internal Link
Absolute Link
Anchor Link
A link that references a file on the same server within the same directory, such as images/photo.jpg, is known as a(n):
Absolute Link
Relative Link
External Link
Email Link
In HTML, what must an attribute always include?
A semicolon at the end
Only a single value without a name
A name and a value pair, typically using quotes around the value
A
Which character entity is used in HTML to insert a non-breaking space (a space that will not break into a new line)?
©
<
"
Which of the following character entities should be used to display the less-than sign (<) on a webpage?
>
<
&
—
What is the main function of the
tag in HTML?
To insert a horizontal line
To create a hyperlink reference
To define the smallest heading
To indicate a table header
What is the purpose of using the tag instead of the tag for bold text?
The tag is deprecated in HTML5
The tag is an inline element while is a block element
The tag provides semantic meaning (importance) for accessibility
The tag cannot be styled with CSS
Which tag is used to indicate the beginning and end of an ordered list?
<ul>
<li>
<ol>
<dl>
The user's visible area of a webpage, which varies with the device, is known as the:
Viewport
Document Object Model (DOM)
Metadata
Client-side
When building an HTML form, which element is used to create a selection option where the user can choose one or more items from a set?
Text field
Button
Radio button
Checkbox
Which HTML tag is specifically designed to contain table data, not the table header?
<table>
<th>
<tr>
<td>
What is the difference between a block-level element and an inline-level element?
A block-level element can contain other code, while an inline-level element cannot
A block-level element starts on a new line and takes the full available width, while an inline-level element does not and only takes up necessary width
Block elements can be styled with CSS, but inline elements cannot
Inline elements are always semantic, while block elements are non-semantic
Which element is used to display a paragraph of text?
<p>
<h1>
<li>
<div>
In HTML, what is the correct way to specify keywords and descriptions for a page's metadata?
Using a
Using a element inside the
sectionAs the content of the
elementUsing a
