-
What does URL stand for?
a. Uniform Resource League
b. Uniform Resource Locator
c. Uniformed Registered Learners
d. Uniquitous Redundant Lasers
Uniform Resource Locator
-
In the URL http://www.barnesandnoble.com/, which part is the tld (top level domain)?
a. barnesandnoble.com.
b. .com.
c. http://.
d. www.
.com
-
What does HTML stand for?
a. Human Temperamental Mobile Linguistics
b. Hypervisor Textual Media Language
c. Hypertext Markup Language
d. Ham Turkey Mozzarella Linguini
Hypertext Markup Language
-
Which of the following is the most current version of HTML?
a. HTML 5
b. HTML 4
c. XHTML 1.1
d. HTML 3
HTML 5
-
Which of the following is another term for folder?
a. Icons
b. Text editor
c. Directory
d. Dialog box
Directory
-
Which of the following best describes what you see when you open a Web page in a text editor?
a. A screen shot of your Web page
b. Source code
c. The rendered page
d. Video tutorials
Source code
-
There are certain mandatory tags that every Web page must contain. Which of the following tag pairs are mandatory?
a. <body>...</body>
b. <p>...</p>
c. <em>...</em>
d. <h1>...</h1>
<body>...</body>
-
Which tag in a page's source code lets the user agent know it has reached the end of the document?
a. </head>
b. </html>
c. </title>
d. </body>
</html>
-
Which of the following is the proper closing tag for a paragraph?
a. <p/>
b. <\p>
c. <p>
d. </p>
</p>
-
What do Web browsers, search engine bots, and screen readers for the blind have in common?
a. They're all tools for creating and editing Web pages.
b. They are all transportation devices.
c. They're all people.
d. They're all user agents.
They're all user agents.
-
Suppose you create a section in a page that uses a level-2 subheading that reads <h2>E-Readers</h2>. Below that, I want two subsections titled E-Ink and Backlit. Which tags would be the best to use for the headings of those subsections below the h2?
a. <h3>...</h3>
b. <li>...</li>
c. It doesn't matter what tags you use, so long as it looks good in the Web browser
d. <h1>...</h1>
<h3>...</h3>
-
Which tags mark the beginning and end of a bulleted (unordered) list?
a. <ol>...</ol>
b. <ul>...</ul>
c. <p>...</p>
d. <body>...</body>
<ul>...</ul>
-
What tags are used between the <ol>...</ol> tags, or between the <ul>...</ul> tags,to define items within the list?
a. <li>...</li>
b. <p>...</p>
c. <h1>...</h1>
d. <a>...</a>
<li>...</li>
-
If you type ™ in the code of the page, what will that show in the browser?
a. A nonbreaking space
b. A bulleted list
c. A link
d. The trademark symbol
The trademark symbol
-
In the tag <a href="index.htm">, what is the href an example of?
a. The closing tag
b. An attribute
c. The link text
d. A tag
An attribute
-
Which of the following is a common image type for print publishing that won't work for website pictures?
a. GIF
b. TIFF
c. PNG
d. JPEG
TIFF
-
f you intend to use a picture in your website, in which folder should you put the image (or a copy of it)?
a. Your website folder
b. Your pictures folder
c. On a flash drive
d. On a DVD disc
Your website folder
-
Which tag below shows the correct syntax for displaying an image named myphoto.jpg in a page (assuming myphoto.jpg is in the same folder as the page that contains the tag)?
a. <imgsrc="myphoto.jpg"alt="Your name here" />
b. <img src="my photo.jpg" alt="Your name here" />
c. <img src=myphoto.jpg alt=Your name here />
d. <img src="myphoto.jpg" alt="Your name here" />
<img src="myphoto.jpg" alt="Your name here" />
-
Which tag below would correctly display a picture named flower.gif at a width of 250 pixels (assuming the flower.gif picture is in the same folder as the page that contains the tag)?
a. <imgsrc=flower.gifalt=flowerheight=250 />
b. img src="flower.gif" alt="flower" height="250" />
c. img src="flower.gif" alt="flower" width="250" />
d. img src="flower" alt="flower" width="250" />
img src="flower.gif" alt="flower" width="250" />
-
On your average computer screen, which measure would be closest to 1 inch?
a. 1 pixel
b. 1,000 pixels
c. 10 pixels
d. 100 pixels
100 pixels
-
Which tags define a single row within a table?
a. <tr>...</tr>
b. <th>...</th>
c. <td>...</td>
d. <table>...</table>
<tr>...</tr>
-
Which tags define a single data cell within a table row?
a. <data>...</data>
b. <td>...</td>
c. <th>...</th>
d. <tr>...</tr>
<td>...</td>
-
Which attribute is used in the <table> tag to define the width of the border lines in a table?
a. align
b. cellspacing
c. cellpadding
d. border
border
-
Which of the following is the correct syntax for creating a table cell with content centered within the cell?
a. <td align="center">
b. <td="center>
c. <align td="center">
d. <aligntd=center>
<td align="center">
-
When writing a comment in the code, inside which of the following characters should you place the text?
a. !! and !>
b. <p> and </p>
c. <!-- and -->
d. <td> and </td>
<!-- and -->
-
Only one of the tags below has all of the tags in the right order for proper testing. Which one is it?
a. <p>Hello <strong>there >em>world>/em>/p>/strings>
b. <p>Hello <strong> there <em>world</em>/strong></p>
c. <p>Hello <strong>there <em>world</p></strong></em>
d. <p>Hello <strong>there <em>world></strong></p</em>
<p>Hello <strong> there <em>world</em>/strong></p>
-
Like most things in high tech, HTML has evolved over the years. The W3C has deprecated some of the tags and attributes from the original HTML language. Which of the following best describes the meaning of the term "deprecated" in this context?
a. No longer recommended
b. Brand new
c. Highly recommended
d. Guaranteed to never change
No longer recommended
-
The original HTML had its roots in SGML (Standard Generalized Markup Language). What language is the root of XHTML?
a. XBasic
b. CSS
c. XML (eXtensible Markup Language)
d. XQuery
XML (eXtensible Markup Language)
-
What do you call tags that aren't paired with a closing tag?
a. Attributes
b. Empty tags
c. Deprecated tags
d. Values
Empty tags
-
In Web development, we use HTML to describe structure. What language do we use for presentation?
a. W3C
b. CSS
c. XML
d. XHTML
CSS
-
What is the correct spelling of the CSS property for aligning text within an element?
a. text-align
b. text_align
c. text align
d. TextAlign
text-align
-
Which style of align creates a paragraph where both the left and right edges of a multiline paragraph are smooth, not ragged?
a. Left
b. Right
c. Center
d. Justify
Justify
-
What do the tags <style type="text/css">...</style> define in a Web page?
a. A color
b. An inline style
c. A table
d. An internal style sheet
An internal style sheet
-
Which of the following would be the correct syntax for making the background color of a page silver?
a. BACKGROUND-COLOR;SILVER;
b. backgroundcolour:silver;
c. silver; background color:
d. background-color:silver;
background-color:silver;
-
You're experimenting with colors in a Web page. When you look in the browser, you see that all of the text has disappeared. What's the most likely cause?
a. Your computer is broken, and you need to take it to a repair shop.
b. The Web browser you're using is outdated and doesn't do colors correctly.
c. You didn't provide enough contrast between the background and foreground colors.
d. You deleted all of the text in the source code without realizing it.
You didn't provide enough contrast between the background and foreground colors.
-
In Web page layouts, which page division is most often used to display a corporate logo?
a. main content
b. navigation bar
c. footer
d. header (or branding) division
header (or branding) division
-
Which of the following is most often used as the opening tag for a page division?
a. <p>
b. <strong>
c. <div>
d. <id>
<div>
-
If you want to create a page division named nav, what is the correct way to type the tag?
a. <div id="nav">
b. <id div="nav">
c. DIV "ID"=NAV>
D. <nav id="div">
<div id="nav">
-
If you create a table that's 100% wide, and you want to put four equal-width cells in it, what is the correct inline style for each <td> tag?
a. id:25%"
b. style="width:25%"
c. 20%=width
d. width=style:25%
style="width:25%"
-
If you want your site to have five pages, each page must be a file with what as the filename extension?
a. .jpeg or .png
b. .htm or .html
c. .gif or .jpeg
d. .txt or .css
.htm or .html
-
What do we call a page layout that's always the same width and doesn't stretch or shrink to fill the width of a browser window?
a. Liquid (or fluid) layout
b. Fixed layout
c. Squishy layout
d. Traction layout
Fixed layout
-
Which of the following would be the correct syntax for a tag that starts a containing div named wrapper?
a. <wrapper id="div">
b. <div id="wrapper">
c. <wrapper div="id">
d. <id="div" wrapper>
<div id="wrapper">
-
Suppose you discover that your screen resolution is 1280 x 1024. What does the 1280 stand for?
a. A width of 1,280 inches
b. The model number
c. A width of 1,280 milliseconds
d. A width of 1,280 pixels
A width of 1,280 pixels
-
If you have the tag <div id="wrapper"> in your page, what would be the correct selector for a style rule that defines of the div?
a. #WRAPPER
b. #wrapper
c. <wrapper>
d. .wrapper
#wrapper
-
Suppose you have a navigation bar with four items. Each item is in a table cells. You want the table cells to all have the same width, and also fill the full width of the navigation bar. How wide should you make each table cell?
a. 25%
b. 33.3%
c. 50%
d. 20%
25%
-
In the world of Web development, what does SEO stand for?
a. Seriously Existential Orientation
b. Selectively Ergonomic Ornithopter
c. Search Engine Optimization
d. Studious Energetic Organizers
Search Engine Optimization
-
What are the google.com and bing.com sites example of?
a. Authoring tools
b. Directory services
c. Search engines
d. Graphics editors
Search engines
-
What does the phrase organic search results refer to?
a. Search results that are not paid-for ads.
b. Search results that are actually paid-for advertisements on the search results page.
c. Faulty search results caused by spamming the search engines.
d. Search results you can grow from seeds in your garden.
Search results that are not paid-for ads.
-
What meta tags was originally ignored by Google and has since been dropped from all other search engine services due to abuse and spamming?
a. Author
b. Description
c. Robots
d. Keywords
Keywords
-
From a search engine optimization perspective, which of the following do you think would be the best title for a Web page offering Yorkshire Terrier puppies for adoption in Kalamazoo, Michigan?
a. <title>Welcome!</title>
b. <title>Adorable puppies</title>
c. <title>Adopt a Yorkshire Terrier Puppy in Kalamazoo Michigan</title>
d. <title>Kalamazoo Yorkshire Terrier Michigan Puppy</title>
<title>Adopt a Yorkshire Terrier Puppy in Kalamazoo Michigan</title>
-
What term is used to describe copying files from your computer to a Web server?
a. Downloading
b. Uploading
c. Renaming
d. Deleting
Uploading
-
What do we call computers on the internet that provide services like email and the Web?
a. clients
b. servers
c. design elements
d. authoring systems
servers
-
Which of the following best approximates the number of Web servers on the Internet?
a. About a dozen
b. Two
c. One
d. Thousands
Thousands
-
What is the first page you see when browsing to a website?
a. root page
b. home page
c. title page
d. opening page
home page
-
What do most hosting providers require that you name your home page?
a. Welcome.htm or Welcome.html
b. Root.htm or Root.html
c. Index.htm or Index.html
d. Home.htm or Home.html
Index.htm or Index.html
-
What do we call the physical stuff that makes up a computer system (the stuff you can see and feel)?
a. Operating system
b. Software
c. Hardware
d. Wysiwyg
Hardware
-
Mac OS and Windows are what type of software?
a. Text editors
b. Graphic editors
c. Operating systems
d. Web authoring systems
Operating systems
-
Which of the following is a popular wysiwvg application for authoring websites?
a. TextEdit
b. Paint.NET
c. Notepad
d. Dreamweaver
Dreamweaver
-
Suppose you're shopping around for a book about Dreamweaver, and you see books for different versions, including CS2, CS3, CS4, and CS5. Of those, which is most likely to be the newest version?
a. CS5
b. CS2
c. CS4
d. CS3
CS5
-
What do we call the act of finding and correcting errors in program code?
a. Publishing
b. Debugging
c. Uploading
d. Downloading
Debugging
-
In a URL like http://www.amazon.com, which represents the protocol?
a. .com
b. amazon.com
c. http://
d. www.
http://
-
In a publishing jargon, headings, paragraphs, lists, tables, and images are all examples of what?
a. Host names
b. Web pages
c. Design elements
d. Web servers
Design elements
-
Where do most Web developers initially create and store the pages that make up their website?
a. In a Web browser
b. On a CD (Compact Disc)
c. In a local folder on their computer's hard drive
d. On a Web server
In a local folder on their computer's hard drive
-
What character does every tag in HTML start with?
a. $
b. \
c. <
d. >
<
-
Which of the following best describes what you're seeing when you browse to or open a page in a Web browser?
a. The contents of a flash drive that's plugged into your computer
b. Source code
c. The rendered code
d. Icons that represent all files on the Web server
The rendered code
-
Which tags are used to mark up text as a paragraph?
a. <h1>...</h1>
b. <strong>...</strong>
c. <em>...</em>
d. <p>...</p>
<p>...</p>
-
Which tags are most suitable for a page's main title?
a. <h1>...</h1>
b. <h2>...</h2>
c. <h3>...</h3>
d. <h4>...</h4>
<h1>...</h1>
-
Which tags mark the beginning and end of a numbered (ordered) list?
a. <ul>...</ul>
b. <body>...</body>
c. <ol>...</ol>
d. <p>...</p>
<ol>...</ol>
-
Which term best describes the index.htm portion of the link <a href="index.htm">Home</a>?
a. Relative reference
b. Closing tag
c. Absolute reference
d. Link text
Relative reference
-
Which type of image is limited to 256 colors and is commonly used for clip art illustrations on the Web?
a. PNG
b. TIFF
c. JPEG
d. GIF
GIF
-
Which of the following is required to show a picture in a Web page?
a. Put a <ul> tag where you want the image to appear
b. Just put the image file in the folder that contains the papers
c. Place an <img /> tag in the page where you want the image to show
d. Put <table>...</table> tags where you want the image to appear
Place an <img /> tag in the page where you want the image to show
-
Which of the following represents roughly a million bytes?
a. GB (Gigabyte)
b. KB (Kilobyte)
c. MB (Megabyte)
d. TB (Terabyte)
MB (Megabyte)
-
Which tags define the start and end of a table?
a. <th>...</th>
b. <table>...</table>
c. <tr>...</tr>
d. <td>...</td>
<table>...</table>
-
Which HTML attribute of the <table> tag allows you to control empty space inside the borders of each table cell?
a. Cellspacing
b. Cellpadding
c. Border
d. Align
Cellpadding
-
Which of the following is the correct syntax for creating a table cell and using an attribute to right-align the contents of that cell?
a. <td align="right">
b. <align=right td>
c. <table right>
d. <td=right>
<td align="right">
-
In the language of the W3C, what is a deprecated item?
a. An older item that's no longer recommended and is phased out of the language
b. A new item that's highly recommended the immediate use
c. A new, experimental feature that you're encouraged to try out in all of your Web pages
d. An item that exists in the CSS language but not in any version of HTML
An older item that's no longer recommended and is phased out of the language
-
Which of the following is the correct way to write a br tag (line break) in XHTML?
a. <br>
b. <br />
c. <BR />
d. <BR>
<br />
-
What goes between the quotation marks in a style="..." attribute?
a. HTML5 tags
b. A relative reference
c. CSS property:value pairs
d. Deprecated tags and attributes
CSS property:value pairs
-
When CSS styles conflict, which one takes precedence?
a. The one that's farthest from the element being styled
b. The one that's closest to the element being styled
c. There's no way to know, because the winner is chosen at random
d. Colors from the styles merge into a new color
The one that's closest to the element being styled
-
Where would you place an internal style sheet in a page?
a. In the quotation marks of a style= attribute
b. Between the <body>...</body> tags
c. Inside an <align> tag
d. Between the <head>...</head> tags
Between the <head>...</head> tags
-
When you see a code like #ff00ff in code, what does it most likely represent?
a. An HTML tag
b. A color
c. A table cell
d. A font
A color
-
Which tags are commonly used to define page divisions?
a. <p>...</p>
b. <a>...</a>
c. <div>...</div>
d. <body>...</body>
<div>...</div>
-
A style rule that uses #header as its selector most likely goes with which tag below?
a. <div class="header">
b. <div>
c. <div id="header">
d. <header>
<div id="header">
-
Which of the following is the correct syntax for a CSS inline style in a table that makes the table the full width of the browser window (or containing element)?
a. style="width:20px"
b. width="style:100%"
c. style="width:100px"
d. style="width:100%"
style="width:100%"
-
What do you call the type of page layout that always extends the full width of a browser window, no matter how wide or narrow that browser window is?
a. Fixed layout
b. Fluid layout (or liquid layout)
c. Orbital layout
d. Rigid layout
Fluid layout (or liquid layout)
-
Which of the following best describes an 800 x 600 screen resolution?
a. A screen that is 800 inches tall and 600 inches wide.
b. A screen that is 800 pixels wide and 600 pixels tall.
c. A screen that is 800 pixels tall and 600 pixels wide.
d. A screen that is 800 inches wide and 600 inches tall.
A screen that is 800 pixels wide and 600 pixels tall.
-
In your page, you have code that reads <a href="products.html">Products</a>. When you view the page in a browser, you see Products as a link, But when you click the link, it doesn't work. You get an error instead. What's the most likely problem?
a. There is no page named products.html in the same folder as the page.
b. Your Web browser is faulty and needs to be replaced.
c. Your computer is broken and needs to be taken to a repair shop.
d. You aren't connected to the Internet.
There is no page named products.html in the same folder as the page.
-
What are the Google and Bing websites?
a. Search engines
b. Authoring programs
c. Popular computer games
d. Directory services
Search engines
-
If you use meta tags in a Web page, where must you type them?
a. Above the <html> tag in the page.
b. In the head section (between the <head> and </head> tags).
c. In the body section (between the <body> and </body> tags).
d. Below the </html> tag in the page.
In the head section (between the <head> and </head> tags).
-
When it comes to getting your site promoted, which of the following is a bad and dangerous practice that you should avoid?
a. cultivate links
b. incorporate keywords and key phrases in your pages
c. spamming the search engines
d. create a list of keywords and key phrases for your site
spamming the search engines
-
Which of the following do you need to do to make your website visible to the rest of the world?
a. Add a .txt extension to all the filenames
b. Upload your website files to a Web server.
c. Get a credit card with a very high credit limit.
d. Download your website files to an email server.
Upload your website files to a Web server.
-
To which of the following folders on a web server would you upload your web pages to make them visible to the world?
a. .htpasswds
b. public_html
c. etc
d. tmp
public_html
-
Suppose you have a page that shows a picture, and it works fine on your site. But after you publish the site and browser to the page, the picture is missing. What's the most likely problem?
a. Your computer is broken and needs to be taken to a repair shop.
b. You didn't upload the image file to the Web server.
c. Your HTML code got messed up when you uploaded the page to the Web server.
d. You forgot to change the filename extension on the image to .html.
You didn't upload the image file to the Web server.
-
What does wysiwyg stand for?
a. What You See Isn't What You've Got
b. What You See Isn't What You Want
c. What You See Is What You Get
d. When You See It Wait Your Gift
What You See Is What You Get
-
What do you call an online authoring tool offered by a Web hosting provider that allows you to create pages in a wysiwyg manner, right on the sight?
a. Text editor
b. Site builder
c. Operating system
d. Spreadsheet
Site builder
-
What can you create on the WordPress.com site?
a. a blog
b. digital photos
c. e-books
d. podcasts
a blog
|
|