WGU D276 Exams/ Assessments (New 2024/ 2025/2026 Updates BUNDLED TOGETHER) Web Development Foundations Exam| Graded A | Questions and Verified Answers| 100% Correct
WGU D276 (New 2023/ 2024 Update) Web
Development Foundations Exam Prep|
Questions and Verified Answers| 100%
Correct
QUESTION
If a web server is reached but the specific requested page isn’t found, what status code does the
server return?
Answer:
404
QUESTION
What is Linkrot?
Answer:
The general name for a once valid link that now returns a 404 status code
QUESTION
What is a networking protocol that runs over TCP/IP and governs communication between web
browsers and web servers?
Answer:
HyperText Transfer Protocol (HTTP)
QUESTION
What is a protocol suite that governs how data packets are transferred over the internet from one
machine to another?
Answer:
Transmission Control Protocol/Internet Protocol (TCP/IP)
QUESTION
What is a browser cache?
Answer:
An area on a computer hard drive where web content can be stored by the web browser for quick
retrieval later
QUESTION
What is a network sniffer?
Answer:
Software that monitors network traffic and allows users to inspect HTTP requests and responses.
QUESTION
What is the Internet of Things (IoT)
Answer:
The global connection of communicating devices that sense and control technology on behalf of
humans
QUESTION
what is the ability of users with disabilities to access and use webpage with reasonable effort?
Answer:
Web Accessibility
QUESTION
What is the use of artificial intelligence (AI) and access to vast amounts of simulate human
problem solving in complex situations?
Answer:
Cognitive Computing
QUESTION
The _ element is used to contain meta tags, links to style sheets, and the title element. Answer: … QUESTION The declaration identifies the version of HTML used to create the webpage.
Answer:
doctype
QUESTION
The _ element is used to specify information about the document, such as character set, author, and viewport. Answer: QUESTION The _ element contains the entire document code.
Answer:
…
get pdf at https://learnexams.com/search/study?query=
WGU D276 (New 2023/ 2024 Update) Web
Development Foundations Exam | Guide with
Questions and Verified Answers| 100%
Correct
QUESTION
How many HTTP requests are made for a webpage that contains four web resources?
Answer:
- one for the html file and one for each resource
QUESTION
four parts of a HTTP request / response
Answer:
-start line
-zero or more header fields
-empty line
-optional message body
QUESTION
start line
Answer:
specifies the HTTP version being used. A REQUESTS start line includes a request type and
path;
a RESPONSES start line includes a status code and phrase.
QUESTION
header field
Answer:
keyword followed by a colon and a value. Header fields supply additional information about the
request or response
QUESTION
message body
Answer:
contains data being transferred between a web browser and web server.
In a REQUEST, the message body may be empty or contain submitted form data.
In a RESPONSE, the message body may contain the requested resource.
QUESTION
content-length
Answer:
number of bytes in the response’s message body
-the web browser uses the content length to determine how much data to expect from the web
server
QUESTION
content-type
Answer:
media type of the response’s message body
-common media types: text/css, image/jpeg, application/pdf, video/quicktime
QUESTION
Date
Answer:
datetime the response was generated by the web server
-Datetime values in HTTP headers are represented in Greenwich Mean Time (GMT), which is
equal to Coordinated Universal Time (UTC)
QUESTION
last-modified
Answer:
Datetime the requested resource was last modified on the web server.
-for resources that are dynamically created by the web server, the last modified datetime is often
not provided
QUESTION
server
Answer:
identifies the web server software that generated the response
-popular values for Server: Apache, Microsoft-IIS, nginx
QUESTION
Host
Answer:
the domain name for the requested path
-some websites are hosted at the same IP address, so the Host field helps the web server
determine which websites resource is being requested
QUESTION
user-agent
Answer:
Identifies the browser making the request
-Browsers often identify themselves using a unique string of characters. The User-Agent field
may be used by a web server to respond back with different resources depending on which
browser made the request. Ex: A desktop page may be sent back to a desktop Chrome browser,
but a mobile webpage may be sent back to an iPhone browser.
QUESTION
IANA (Internet Assigned Numbers Authority)
Answer:
a standards organization that manages various internet numbers and symbols, like global IP
address allocation, root zone management in DNS, and media types. IANA maintains a list of
HTTP headers that are currently active, obsolete, or experimental.
QUESTION
how to access Chrome’s developer tools (DevTools)
Answer:
by pressing Ctrl+Shift+i (Windows) or Command-Option-i (Mac)
QUESTION
HTTP request method
Answer:
indicates the desired action to perform on a resource
ex: GET, HEAD, POST, PUT, DELETE
QUESTION
GET
get pdf at https://learnexams.com/search/study?query=
WGU D276 Assessment (New 2023/ 2024
Update) Web Development Foundations
Exam| Graded A | Questions and Verified
Answers| 100% Correct
QUESTION
Your Web team manager has directed you to create a Web form that allows the user to upload a
file to your Web server. Which element would accomplish this task?
Answer:
QUESTION
In the same form, what scripting language could be used to create functions supporting file
drag&drop?
Answer:
JavaScript
QUESTION
Which of the following is NOT true of HTML5 drag&drop:
Answer:
was NOT part of the HTML4 standard
QUESTION
The following
QUESTION
What attribute would you include in the
QUESTION
The primary use of the HTML5 canvas element is:
Answer:
The HTML
QUESTION
Which of the following is an example of a CSS ID?
Answer:
top { }
QUESTION
What is true of CSS IDs and custom Classes? (choose more than one)
Answer:
HTML elements can refer to more than one class.
The ID of an element is unique within a page
QUESTION
What statement describes the difference between these heading styles?
Answer:
they will render text elements different based on the unit of measurement used for the font-size
property
QUESTION
What part of the CSS rule-set is ‘font-size’?
Answer:
property
QUESTION
A selector can indicate that a CSS rule applies to multiple elements. Which of these examples
shows the correct method?
get pdf at https://learnexams.com/search/study?query=
WGU D276 (New 2023/ 2024 Update) Web
Development Foundations Exam| Graded A |
Questions and Verified Answers| 100%
Correct
QUESTION
Which two units make the size of an element responsive to screen size?-
Answer:
vw vh
QUESTION
A website developer needs to create a website that looks suitable on mobile, tablet, and desktop
devices. Which type of web design should the developer use?
Answer:
Responsive Design
QUESTION
Which CSS properties are used to specify the amount of space between grid columns and rows?
Answer:
column-gap and row-gap
QUESTION
Which CSS rule should be used to create three columns of equal width?-
Answer:
grid-template-columns: 1fr 1fr 1fr;
QUESTION
What is the global setting in Bootstrap that affects the overall text appear- ance on a website?
Answer:
Typography
QUESTION
Which Bootstrap installation option avoids bundling Bootstrap with the source code of a
website?
Answer:
CDN
QUESTION
Which type of Bootstrap library includes several symbols that can be used within a web page?
Answer:
Icons
QUESTION
Which Firefox Developer Tools tab is used to view and edit cookies on a site?
Answer:
Storage
QUESTION
Which Firefox Developer Tools tab displays how long a request took for each site resource
type?
Answer:
Network
QUESTION
What can be used to instantly apply changes to applied styles?
Answer:
Browser developer tools
QUESTION
A website developer identifies an issue with a CSS property value taking precedence over an
element. Which Firefox Developer Tools tab should the developer access to review CSS
declaration precedence?
Answer:
Inspector
QUESTION
Which Chrome DevTools tab is accessed to view logged JavaScript mes- sages and run
JavaScript?
Answer:
Console
QUESTION
Use the given HTML document to answer the following question:
This is the introduction statement
This is the story I am telling
Which error is present in this code?
Answer:
The tag should be to the left of the