Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 4 out of 126 pages
Exam (elaborations)

WGU D276 WEB DEVELOPMENT FOUNDATIONS OBEJECTIVE ASSESSMENT ACTUAL EXAM STUDY GUIDE 2025/2026 QUESTIONS BANK AND CORRECT DETAILED ANSWERS WITH RATIONALES || 100% GUARANTEED PASS RECENT VERSION

Document preview thumbnail
Preview 4 out of 126 pages

WGU D276 WEB DEVELOPMENT FOUNDATIONS OBEJECTIVE ASSESSMENT ACTUAL EXAM STUDY GUIDE 2025/2026 QUESTIONS BANK AND CORRECT DETAILED ANSWERS WITH RATIONALES || 100% GUARANTEED PASS RECENT VERSION 1. What required form attribute specifies the manner in which the browser will send form data to a web server? - ANSWER Method 2. This required form attribute specifies the name and location of the CGI script used to process the form - ANSWER Action 3. What form method attribute value instructs the browser to append the form data to the URL for use in a query string? - ANSWER Get 4. What form method attribute value allows sending more characters and is slightly more secure when submitting a Web-based form? - ANSWER Post 5. In HTML, what is a container? - ANSWER Part of a web document body that has opening and closing tags 6. In HTML, what is a parent container - ANSWER A container in which another element resides 7. HTML elements that are containers - ANSWER footer, header, section, and span 8. A block element with no semantic meaning - ANSWER div 9. WHat type of HTML element fills the minimum space possible in the parent container and can only contain text of other elements of this type? - ANSWER Inline Element 10. Generic HTML element that creates inline containers to facilitate the managing content on a webpage. Has no semantic meaning - ANSWER span 11. What types of elements can be insides a block element? - ANSWER Inline and block elements 12. What types of elements can be insides an inline element? - ANSWER Inline elements 13. What HTML element do we use to facilitate information gathering for submission to a server? - ANSWER form 14. What HTML attribute should be used if a form field contains binary data that the normal format of the query string is not sufficient to encode? - ANSWER Enctype 15. Five primary attributes for a input element - ANSWER id, name, type, value, placeholder 16. Which HTML tag should contain introductory content? - ANSWER header 17. Which HTML block demonstrates the correct use of semantic elements? - ANSWER body header h1Welcome to my site/h1 /header main h2We are the Welcome Council./h2 pLorem ipsum dolor sit amet, consectetur adipiscing elit./p pVivamus tincidunt erat eleifend mi elementum varius.p section h3Our projects/h3 article h4Project 1/h4 pLorem ipsum dolor sit amet, consectetur adipiscing elit/p /article article h4Project 2/h4 pLorem ipsum dolor sit amet, consectetur adipiscing elit/p /article /section /main/body 18. What is a way the a tag can be used? - ANSWER Linking to a specific location on the same page 19. Which Firefox Developer Tools tab is used to view and edit cookies on a site? - ANSWER Storage 20. Which Firefox Developer Tools tab displays how long a request took for each site resource type? - ANSWER Network 21. What can be used to instantly apply changes to applied styles? - ANSWER Browser developer tools 22. Which tool can be used to determine if a component has been rendered with the incorrect size and margin? - ANSWER Inspect the Element to check the rendered box model 23. What is the move towards separating document structure, presentation, and webpage interaction called? - ANSWER Separation of concerns 24. What is a packet? - ANSWER Information sent on the Internet 25. What does an IP address represent? - ANSWER A computer's unique address on the Internet 26. What is the format of a typical IP address? - ANSWER 32 bits divided into four 8-bit groups 27. What is IPv4? - ANSWER The original Internet Protocol with 32-bit addresses 28. What is IPv6? - ANSWER A new version of Internet Protocol with 128 bit addresses 29. What does DNS stand for? - ANSWER Domain Name Server 30. What are root servers? - ANSWER Thirteen main DNS servers in the world 31. What is a domain name registrar? - ANSWER Services that allow domain name registration 32. You are embedding audio in your Web page and want to specify that the audio file should play immediately upon loading. Which attribute is needed to accomplish this? - ANSWER autoplay="autoplay" 33. Which of the following describes a Server-Side Include (SSI) on a Web page? - ANSWER It is an SGML statement processed by the server. 34. Which code example demonstrates a valid container or non-empty tag in HTML? - ANSWER p/p 35. Which form element attribute and value specify that the browser will send data to the Web server location specified by a URL? - ANSWER method="post" 36. You need to pay an Internet Service Provider (ISP) for services rendered. Which payment technology would you use? - ANSWER Electronic Funds Transfer (EFT) 37. Which approach is ideal for ensuring that a Web page is maintained and does not appear neglected? - ANSWER Using automated link-checking software 38. You request a Web page using your browser. This Web page is coded to use a color that is not supported by your browser. How will your computer compensate for this limitation? - ANSWER The image will appear and be dithered. 39. Table element attributes are not supported in HTML5; CSS must be used. Which is the only table element attribute you can still use for HTML5 compliant tables? - ANSWER Border 40. What is the best source from which you can obtain feedback about your Web site to evaluate the site's effectiveness and determine ways you can improve the site? - ANSWER Sales representatives 41. When creating an image map hot spot in HTML, a circle area is defined by: - ANSWER two coordinates and the circle's radius.

Content preview

WGU D276 WEB DEVELOPMENT FOUNDATIONS
OBEJECTIVE ASSESSMENT ACTUAL EXAM
STUDY GUIDE 2025/2026 QUESTIONS BANK
AND CORRECT DETAILED ANSWERS WITH
RATIONALES || 100% GUARANTEED PASS
<RECENT VERSION>



1. What required <form> attribute specifies the manner in which the browser
will send form data to a web server? - ANSWER ✔ Method

2. This required <form> attribute specifies the name and location of the CGI
script used to process the form - ANSWER ✔ Action

3. What <form> method attribute value instructs the browser to append the
form data to the URL for use in a query string? - ANSWER ✔ Get

4. What <form> method attribute value allows sending more characters and is
slightly more secure when submitting a Web-based form? - ANSWER ✔
Post

5. In HTML, what is a container? - ANSWER ✔ Part of a web document body
that has opening and closing tags

6. In HTML, what is a parent container - ANSWER ✔ A container in which
another element resides

7. HTML elements that are containers - ANSWER ✔ <footer>, <header>,
<section>, and <span>

8. A block element with no semantic meaning - ANSWER ✔ <div>

,9. WHat type of HTML element fills the minimum space possible in the parent
container and can only contain text of other elements of this type? -
ANSWER ✔ Inline Element

10.Generic HTML element that creates inline containers to facilitate the
managing content on a webpage. Has no semantic meaning - ANSWER ✔
<span>

11.What types of elements can be insides a block element? - ANSWER ✔
Inline and block elements

12.What types of elements can be insides an inline element? - ANSWER ✔
Inline elements

13.What HTML element do we use to facilitate information gathering for
submission to a server? - ANSWER ✔ <form>

14.What HTML attribute should be used if a <form> field contains binary data
that the normal format of the query string is not sufficient to encode? -
ANSWER ✔ Enctype

15.Five primary attributes for a <input> element - ANSWER ✔ id, name, type,
value, placeholder

16.Which HTML tag should contain introductory content? - ANSWER ✔
<header>

17.Which HTML block demonstrates the correct use of semantic elements? -
ANSWER ✔ <body> <header> <h1>Welcome to my site</h1> </header>
<main> <h2>We are the Welcome Council.</h2> <p>Lorem ipsum dolor sit
amet, consectetur adipiscing elit.</p> <p>Vivamus tincidunt erat eleifend
mi elementum varius.<p> <section> <h3>Our projects</h3> <article>
<h4>Project 1</h4> <p>Lorem ipsum dolor sit amet, consectetur adipiscing
elit</p> </article> <article> <h4>Project 2</h4> <p>Lorem ipsum dolor sit
amet, consectetur adipiscing elit</p> </article> </section> </main></body>

18.What is a way the <a> tag can be used? - ANSWER ✔ Linking to a specific
location on the same page

,19.Which Firefox Developer Tools tab is used to view and edit cookies on a
site? - ANSWER ✔ Storage

20.Which Firefox Developer Tools tab displays how long a request took for
each site resource type? - ANSWER ✔ Network

21.What can be used to instantly apply changes to applied styles? - ANSWER
✔ Browser developer tools

22.Which tool can be used to determine if a component has been rendered with
the incorrect size and margin? - ANSWER ✔ Inspect the Element to check
the rendered box model

23.What is the move towards separating document structure, presentation, and
webpage interaction called? - ANSWER ✔ Separation of concerns

24.What is a packet? - ANSWER ✔ Information sent on the Internet

25.What does an IP address represent? - ANSWER ✔ A computer's unique
address on the Internet

26.What is the format of a typical IP address? - ANSWER ✔ 32 bits divided
into four 8-bit groups

27.What is IPv4? - ANSWER ✔ The original Internet Protocol with 32-bit
addresses

28.What is IPv6? - ANSWER ✔ A new version of Internet Protocol with 128-
bit addresses

29.What does DNS stand for? - ANSWER ✔ Domain Name Server

30.What are root servers? - ANSWER ✔ Thirteen main DNS servers in the
world

31.What is a domain name registrar? - ANSWER ✔ Services that allow domain
name registration

, 32.You are embedding audio in your Web page and want to specify that the
audio file should play immediately upon loading. Which attribute is needed
to accomplish this? - ANSWER ✔ autoplay="autoplay"

33.Which of the following describes a Server-Side Include (SSI) on a Web
page? - ANSWER ✔ It is an SGML statement processed by the server.

34.Which code example demonstrates a valid container or non-empty tag in
HTML? - ANSWER ✔ <p></p>

35.Which <form> element attribute and value specify that the browser will send
data to the Web server location specified by a URL? - ANSWER ✔
method="post"

36.You need to pay an Internet Service Provider (ISP) for services rendered.
Which payment technology would you use? - ANSWER ✔ Electronic Funds
Transfer (EFT)

37.Which approach is ideal for ensuring that a Web page is maintained and
does not appear neglected? - ANSWER ✔ Using automated link-checking
software

38.You request a Web page using your browser. This Web page is coded to use
a color that is not supported by your browser. How will your computer
compensate for this limitation? - ANSWER ✔ The image will appear and be
dithered.

39.Table element attributes are not supported in HTML5; CSS must be used.
Which is the only table element attribute you can still use for HTML5-
compliant tables? - ANSWER ✔ Border

40.What is the best source from which you can obtain feedback about your Web
site to evaluate the site's effectiveness and determine ways you can improve
the site? - ANSWER ✔ Sales representatives

41.When creating an image map hot spot in HTML, a circle area is defined by:
- ANSWER ✔ two coordinates and the circle's radius.

Document information

Uploaded on
September 13, 2025
Number of pages
126
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers
$15.99

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
Sold
30
Followers
1
Items
418
Last sold
1 week ago



Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions