Foundations Final Test Questions With
Complete Solutions.
In what year did the Internet begin with four networked computers? - Answer 1969
What is a document that is viewed in a web browser? - Answer webpage
What is text that has links to other text, images, videos, and more? - Answer hypertext
In what year did the number of Internet users surpass 3 billion? - Answer 2015
How many root Domain Name System (DNS) servers currently exist in the world? - Answer 13
Identify the five (5) potential parts of a URL. - Answer Fragment
Hostname
Path
Query String
Scheme
Regarding the parts of a URL, what is a Fragment? - Answer 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? - Answer 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? - Answer Transmission Control Protocol / Internet Protocol (TCP/IP)
, What is the ability of users with disabilities to access and use a webpage with reasonable effort? -
Answer web accessibility
HTML comments should be used to ensure that the addition of random white space will not affect
rendering in browsers. - Answer false
HTML comments can be used to disable code to see how a page will appear without a particular markup
element. - Answer true
Good practice is to use the <br>, or line break, element to add space or control formatting of a webpage
- Answer 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? - Answer 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. - Answer <tbody>...</tbody>
<tfoot>...</tfoot>
<thead>...</thead>
Hyperlinks can only contain text. - Answer false
What required <form> attribute specifies the manner in which the browser will send form data to a web
server? - Answer method
This required <form> attribute specifies the name and location of the CGI script used to process the
form. - Answer action
What <form> method attribute value instructs the browser to append the form data to the URL for use in
a query string? - Answer get