FOUNDATIONS NEWEST ACTUAL EXAM TEST BANK 300+
1. XML Tag Formatting
Answer: XML tags follow one of two formats; elements tag
(<city>"Daytona"</city>) or self-closing tags (<hierarchy title="United States" />).
2. Block Element
Answer: An element that fills the width of the element's parent container and can
contain other block elements, inline elements, and text.
3. <div></div>
Answer: A generic element for creating block containers to facilitate manag- ing
page content and is the only block element with no semantic meaning.
4. <span></span>
Answer: The generic element for creating inline containers to facilitate managing
content on the page.
5. <form></form>
Answer: Allows the web browser to submit information form the user to the server.
6. Action Attribute
Answer: Indicates the URL where the form data should be sent.
1/
8
, 7. Method Attribute
Answer: Indicates the HTTP request type the browser will use to communicate
with the server.
8. GET Method
Answer: A technique used by a web browser to submit information to a web server by
altering the URL of the HTTP request.
9. POST Method
Answer: A technique used by a web browser to submit information to a web
server by sending the information in the HTTP request body.
10. Enctype Attribute
Answer: Used with a value of "multipart/form-data" indicates the web browser should
split a POST request into multiple parts, where each input field is sent as a separate
part of the HTTP request message.
11. Checkbox
Answer: Allows users to check, or select, a value, many values, or no value at all.
12. Boolean
Answer: An attribute that is true when present and false when absent.
13. Radio Button
Answer: A widget for input elements with the type attribute of "radio", which
2/
8