DEVELOPMENT FOUNDATIONS (PNVO)
2024/2025 | COMPLETE PRACTICE
EXAMINATION | STUDY GUIDE | LATEST
UPDATE 2026/2027 | ACTUAL EXAM |
PRACTICE QUESTIONS AND ANSWERS |
EXAM REVIEW | 100% CORRECT ANSWERS
| VERIFIED SOLUTIONS
This comprehensive practice examination is designed for students preparing for the WGU D276
Web Development Foundations Pre-Assessment (PNVO). It covers all essential topics including
HTML5 structure and semantics, CSS3 styling and layout, responsive design principles,
JavaScript fundamentals, web protocols, accessibility standards, and front-end development best
practices. Each question is crafted to reflect the rigor and format of the actual pre-assessment,
with verified answers and detailed rationales to help you master the material and achieve a top
score on your 2024/2025 or 2026/2027 assessment.
Table of Contents
1. HTML Structure and Semantics
2. HTML Forms, Multimedia, and Attributes
3. CSS Fundamentals and Selectors
4. CSS Layout: Flexbox and Grid
5. Responsive Design and Accessibility
6. JavaScript Basics and DOM Manipulation
7. Web Protocols, URLs, and Internet Foundations
,Question 1:
Which HTML element is used to define the main content of a document?
A) <header>
B) <main>
C) <section>
D) <article>
Correct Answer: B
The <main> element specifies the dominant content directly related to the central topic of the
document. It should be unique to the document and exclude content that is repeated across pages
(headers, footers, sidebars). <section> groups related content; <article> represents self-
contained content; <header> contains introductory content.
Question 2:
Which HTML element is used to contain navigation links?
A) <navigation>
B) <nav>
C) <menu>
D) <header>
Correct Answer: B
The <nav> element defines a section of navigation links (hypertext menus). It is specifically
designed for major navigation blocks. <menu> is for command menus (less
common). <header> contains introductory content, not exclusively navigation.
Question 3:
Which HTML tag is used to define the root of an HTML document?
A) <head>
B) <body>
C) <html>
D) <document>
Correct Answer: C
The <html> element is the root element of an HTML document. It contains all other elements
(<head> and <body>). It is often called the "root" or "document" element.
Question 4:
The <a> element is used to:
A) Define an abbreviation
B) Create a hyperlink
C) Define an anchor
D) Create an image
Correct Answer: B
The <a> (anchor) element creates a hyperlink to another web page, file, email address, or
location within the same page. The href attribute specifies the destination URL.
, (Page 2)
Question 5:
Which HTML element is used to define independent, self-contained content that could be
distributed and reused (e.g., a blog post)?
A) <section>
B) <div>
C) <article>
D) <aside>
Correct Answer: C
The <article> element represents a self-contained composition that could be independently
distributed or reused (e.g., forum post, magazine article, blog entry, news
story). <section> groups related content. <aside> contains tangentially related content. <div> is
a generic container.
Question 6:
Which tag is used to define an unordered list?
A) <ol>
B) <list>
C) <ul>
D) <li>
Correct Answer: C
The <ul> element defines an unordered (bulleted) list. <ol> defines an ordered (numbered)
list. <li> defines a list item within either type of list. <list> is not a valid HTML element.
Question 7:
Which HTML element is used to contain introductory content or a set of navigational links at the
top of a page?
A) <header>
B) <head>
C) <top>
D) <footer>
Correct Answer: A
The <header> element represents introductory content, typically a group of introductory or
navigational aids. It may contain heading elements, a logo, a search form, or
navigation. <head> contains metadata, not visible content. <footer> contains footer content.
Question 8:
Which of the following are HTML5 semantic tags? (Select all that apply.)
A) <article>
B) <section>
C) <nav>