ANSWERS .Buy Quality Materials!
In what year did the Internet begin with four networked computers?
1969
What is a document that is viewed in a web browser?
webpage
What is text that has links to other text, images, videos, and more?
hypertext
In what year did the number of Internet users surpass 3 billion?
2015
How many root Domain Name System (DNS) servers currently exist in the world?
13
Identify the five (5) potential parts of a URL.
Fragment
Hostname
Path
Query String
Scheme
Regarding the parts of a URL, what is a Fragment?
Optional characters at the end of a URL that start with a hash symbol (#) and
refer to a certain location within a webpage.
Regarding a URL, what is a Query String?
Optional characters to the right of the question mark (?) in a URL that provide
data for the web server.
What is a protocol suite that governs how data packets are transferred over the
internet from one machine to another?
Transmission Control Protocol / Internet Protocol (TCP/IP)
What is the ability of users with disabilities to access and use a webpage with
reasonable effort?
web accessibility
HTML comments should be used to ensure that the addition of random white
space will not affect rendering in browsers.
false
HTML comments can be used to disable code to see how a page will appear
without a particular markup element.
true
Good practice is to use the <br>, or line break, element to add space or control
formatting of a webpage
false
Which CSS property should be used to change the bullet used in an unordered
list and offers more numbering options in an ordered list?
list-style-type
, Select the three optional table tags that browsers may use to allow scrolling of
the table body independently from the table header and table footer.
<tbody>...</tbody>
<tfoot>...</tfoot>
<thead>...</thead>
Hyperlinks can only contain text.
false
What required <form> attribute specifies the manner in which the browser will
send form data to a web server?
method
This required <form> attribute specifies the name and location of the CGI script
used to process the form.
action
What <form> method attribute value instructs the browser to append the form
data to the URL for use in a query string?
get
What <form> method attribute value allows sending more characters and is
slightly more secure when submitting a Web-based form?
post
What type of HTML element fills the minimum space possible in the parent
container and can only contain text or other elements of this type?
inline element
Which HTML element is a generic element for creating inline containers to
facilitate managing content on a webpage. This element has no semantic
meaning.
<span> </span>
What types of elements can be inside a block element?
both inline and block elements
What types of elements can be inside an inline element?
only inline elements
What HTML element do we use to facilitate information gathering for submission
to a server?
<form </form>
What HTML attribute should be used if a <form>...</form> field contains binary
data, such as an image, that the normal format of the query string is not sufficient
to encode?
enctype
Select the five (5) primary attributes for a <input> element.
id
name
placeholder
type
value
What is the <input> type attribute value of a text box widget?
text
Which <input> attribute allows the input to start with a default value?