Web Technology
>
>
URI - Uniform Resource Identifier
identifies a resource on the Internet
<ul>
unordered list
&
&
©
©
Choose the special character that is used to indicate a blank space.
Select the code below that uses CSS to configure a class named "footer" that configures small, italic text.
.footer { font-size: small; font-style: italic;}
in linux asterisk means
0 or more characters
Which tag is used to force the browser to display the next text or element on a new line?
<br>
What tag pair is used to create the largest heading?
<h1> </h1>
What tag pair contains the items in an ordered or unordered list?
<li> </li>
Use the ________ tag to associate a web page with an External Style Sheet.
<link>
Choose the tag pair that is use to link css file to html file.
<link> tag
What tag pair is used to create a new paragraph?
<p> </p>
Use the ________ tag to configure a generic area on a web page that is embedded within a paragraph or other block display element. Question 21 options: A) <div>...</div> B) <title> ... </title> C) <span>... </span> D) <meta> ...</meta>
<span>... </span>
Use the ________ tag to code embedded styles on a web page.
<style> .. </style>
RFC - Requests for Comments
A formal document from the IETF that is drafted by a committee and subsequently reviewed by interested parties
What is a pipe on linux
A pipe is a form of redirection (transfer of standard output to some other destination)
Select the code below that uses CSS to configure a background color of #eaeaea for a web page. Question 20 options: A) body {background-color:#eaeaea; } B) document {background-page:#eaeaea; } C) body {bgcolor:#eaeaea; } D) None of these
A) body {background-color:#eaeaea; }
The ________ property configures a shadow effect on the text displayed within an element. Question 4 options: A) text-shadow B) font-weight C) shadow D) font-style
A) text-shadow
Choose the tag pairs that are used in a description list. Question 31 options: A) <dd> </dd> B) <dl> </dl> C) All of these D) <dt> </dt>
All of these
Choose the true statement below. Question 3 options: A) The content that displays in the browser is contained in the head section. B) The content that displays in the browser is contained in the body section. C) Information about the web page is contained in the body section. D) All of these are true.
B) The content that displays in the browser is contained in the body section.
________ is a set of rules for exchanging files such as text, graphic images, sound, video, and other multimedia files on the Web. Question 24 options:
HTTP
A domain name is a unique text-based Internet address corresponding to a unique ________.
IP address
Blockquote element
Indents a block of text for special emphasis
<small>
Legal disclaimers and notices ("fine print") displayed in small font-size
What does the linux command cd do?
change directory
The declaration property used to set the text color on a web page is:
color
Select the item below that lists the top level domain name for the URL http://www.yahoo.com.
com
A file for External Style Sheet usually uses the ________ file extension.
css
What type of HTML list would be good to use to display a list of terms and their definitions?
description list
The text contained between title tags is:
displayed in the title bar of the browser window
Which CSS property configures the font typeface?
font-family
Which CSS property configures the size of text?
font-size
Which CSS property can be used to configure italic text? Question 23 options: A) font-weight B) font-italic C) font-style D) font-type
font-style
Use the ________ property to configure bold text using CSS.
font-weight
Server
fulfills the request and transmits the results to the client over a network
What do the < and > mean on a linux command
input output
External Styles
◦Separate text file with .css file extension ◦Associate with a HTML link element in the head section of a web page
•Imported Styles
◦Similar to External Styles
Inline Styles
◦body section ◦HTML style attribute ◦apply only to the specific element
Embedded Styles
◦head section ◦HTML style element ◦apply to the entire web page document
________ combines the formatting strengths of HTML 4.0 and the data structure and extensibility strengths of XML.
XHTML
A language using a text-based syntax intended to extend the power of HTML by separating data from presentation is called ________.
XML
To associate an external style sheet with a web page, code:
a link element in the head section of the web page
URL - Uniform Resource Locator
a type of URI which represents the network location of a resource such as a web page, a graphic file, or an MP3 file.
<b>
Bold
<em>
emphasized text
Choose the organization listed below that takes a proactive role in developing recommendations and prototype technologies related to the Web. Question 2 options: A) Internet Engineering Task Force (IETF) B) Web Professional Standards Organization (WPO) C) World Wide Web Consortium (W3C) D) Internet Corporation for Assigned Numbers and Names (ICANN)
C. World Wide Web Consortium (W3C)
To apply a style to a certain group of elements on a web page, configure a CSS ________.
Class
<li>
Contains an item in the list, goes under <ul>
the linux command mkdir mkdir tempdir
Creates a directory mkdir tempdir = temporary
What does the linux command pwd do?
Displaying your working directory
<sub>
Displays a subscript as small text below the baseline
<sup>
Displays a superscript as small text above the baseline
Select the true statement from the list below. Question 29 options: A) When a domain name ends in .com it indicates that it is a computer company. B) A country code domain name can only be owned by someone who resides in that country. C) Only non-profit organizations can purchase a .org domain name. D) None of these statements are true.
None of these statements are true.
What does the linux command ps do
Processing status
IAB - Internet Architecture Board
Provides guidance and broad direction to the IETF. Responsible for publications for RFCs.
Anchor Element
Specifies a hyperlink reference (href) to a file
<strong>
Strong importance; causes text to stand out from surrounding text; usually displayed in bold
<mark>
Text that is highlighted in order to be easily referenced (HTML5 only)
ICANN
The Internet Corporation for Assigned Numbers & Names
uIETF - Internet Engineering Task Force
The principal body engaged in the development of new Internet protocol standard specifications.
TCP/IP
Transmission Control Protocol/Internet Protocol
What does a question mark mean in a linux command?
Used to search up a letter for exampe C?t could return Cot or Cat rc?.d could return rc1.d or rc2.d or rc3.d etc
What does the linux command ls with the -l mean ls -l =
list files and lists contents in a long format
What type of HTML list will automatically place a number in front of the items? Question 34 options:
ordered list
Client
requests some type of service (such as a file or database access) from the server.
Which CSS property configures the capitalization of text?
text-transform
Which of the following attributes would configure an ordered list to display uppercase letters? Question 28 options: A) type="a" B) type="U" C) type="letter" D) type="A"
type="A"
What type of HTML list will automatically place a bullet point indicator in front of each item?
unordered list
When do you need to use a fully qualified URL in a hyperlink? Question 14 options: A) when creating a link to the same web page B) when linking to a page in another folder on the same site C) when linking to a page on an external website D) never
when linking to a page on an external website