MWD Objective 3.02 Ready?. 1. What tag defines the end of a webpage?

Post on 11-Jan-2016

220 views 1 download

Transcript of MWD Objective 3.02 Ready?. 1. What tag defines the end of a webpage?

MWDObjective 3.02

Ready?

1. What tag defines the end of a webpage?

<html>

2. Which of the following shows the proper syntax for an attribute that could be used inside an HTML tag?

Color=“blue”

3. Jeff wants to use a Document Type Definition (DTD) that will allow him to use obsolete tags, but not frames. Which DTD should be used?

Transitional

4. Dustin's website contains games and funny videos that he created. The primary purpose of this site is to:

entertain

5. Which code should be used to insert the image "ball.gif" on a webpage?

<Img src="ball.gif" />

6. Jackie goes to www.youtube.com daily to watch funny videos. For what purpose is Jackie using the website?

Entertain

7. Tiffany is creating a website containing several pages, all having the same text color, style, and size. Which web enhancement tool is the MOST efficient to use?

CSS External Style Sheet

8. Sarah wants to create a webpage with the text in the arial typeface. Which CSS inline style should she use?

<body style="font-family:arial">

9. Jada's website appearence is very different when viewed in Internet Explorer than when viewed in Mozilla Firefox. What does she need to do before publishing her website?

Check the site in

multiple browsers

10. Karen wants to begin a new line within a paragraph of text on a webpage. Which code should she use?

<br />

John wants to insert a CSS comment identifying himself as the author. Which code should he use?

/*Written by John Doe*/

Brittany is creating a website for a major corporation selling customized products and offering extensive customer support. Which web hosting service will BEST meet her needs?

Dedicated

What is the proper code to insert an image named "frog.jpg"?

<img src="frog.jpg" width="104" height="142" />

Sean is building a website on a tight budget. Which aspect of comparing web hosts will he look at?

Cost

Kim is building a new social networking site and hopes to attract millions of users. Which aspect of comparing web hosts will she look at?

Traffic

What is the proper code to create a link to www.amazon.com?

<a href="http://www.amazon.

com">Amazon</a>

Which hyperlink shows an absolute link?

<a href="http://www.target.com">

Target</a>

Which is the correct code to insert a horizontal line in a webpage?

<hr />

Which type of element is being used below?

Bulletedlist

<ul><li>Virigina</li><li>North Carolina</li><li>South Carolina</li><li>Georgia</li></ul>

Which CSS inline style results in the text size of a webpage paragraph displaying at 14px?

<p style=“font-size:14px”>

Beth owns a small business and wants to create a website to sell products online. Which type of web hosting service is BEST?

Shared

Taylor's website has a menu button that is supposed to take visitors to yahoo.com, but instead it takes them to google.com. Before publishing the website he should check the:

Links in The site

Dustin is building a website that needs to be accessed by employees 24 hours a day for important information. Which aspect of comparing web hosts will he look at?

Reliability

Susie followed the W3C's website development standards. This is an ADVANTAGE because her website:

Will display consistently in

different browsers

Which is the correct code to link to "www.google.com"?

<a href="http://www.google.com">Google</a>

What is the primary purpose of the website www.whitehouse.gov?

Inform

The World Wide Web Consortium (W3C) plays which role in the web development standards?

It develops HTML coding

standards

Mary is creating a webpage. What order should she use to insert the structure tags?

<html><head><title></title></head><body> </body>

</html>

Between which paired tags would the visible content of a webpage be displayed?

<body></body>

Heather wants to provide information about her webpage for use by search engines and browsers. Which tag is appropriate to use?

<meta>

Issac created a website that allows potential customers the opportunity to learn more about his business. What is the main purpose of the website?

Inform

The following code should follow which structure tag in order to display in the browser window?

<ul><li>Virigina</li><li>North Carolina</li><li>South Carolina</li><li>Georgia</li></ul>

<body>

Which is an example of using an inline CSS style in a webpage?

<p style="color:blue">

What is the primary purpose of the website www.facebook.com?

Social

Gina is creating a webpage using XHTML. She should make sure that all tags are:

Nestedproperly

While creating a paragraph of text on her webpage, Karen wants to begin a new line. Which XHTML code should she use?

<br />

Which code should be used to create reminder in bold text?

Reminder

<b>Reminder</b>

Annie wants the name of her product to stand out at the top of her webpage. Which tag is BEST?

<h1>Product</h1>

What is the primary purpose of the website www.walmart.com?

Sell

Jerry wants to insert a line break into his webpage. Which code should he use?

<br />

A properly coded HTML tag will always be found between which two symbols?

<>

Which tags are used by search engines to find a website?

<meta />

To save a webpage created in a text-editor, it must be saved with which file extension?

.html

Which result will the following code produce?

• Virginia • North Carolina • South Carolina • Georgia

<ul><li>Virginia</li><li>North Carolina</li><li>South Carolina</li><li>Georgia</li></ul>

To insert a blank line in a webpage, which tag is correct?

<p>

Which will create a link to Mr. Joe Jones' email address joe@joemail.com?

<a href="mailto:joe@joemail.com">Joe_Jones</a>

Kevin is creating his first website entitled, "My Life". The viewer will advance through the site one page at a time in order from his birth to his high school graduation. What website structure should he use?

Linear

What is the primary purpose of the website www.target.com?

Sell

Which is an example of a file that should be saved in the root folder of a website?

index.html

What is the primary purpose of the website www.thesaurus.com?

Inform

Joan created a website that organizes her biology notes into separate webpages by unit and objective. What website structure is best suited for her website?

Hierarchical

Eric finished creating his first website. Before publishing the site, he should do all of the following EXCEPT:

Check the siteIn Internet

Explorer only

A. check the site in Internet Explorer only. B. check spelling. C. validate all links. D. validate the source code.

Which code uses a CSS inline style to change a webpage's background to the image brick.jpg?

<body style="background-

image:url('brick.jpg')">

Which is the correct code to place a gif image named "tiger" into a webpage?

<img src="tiger.gif" alt="BengalTiger" />

Linda created a website entitled, "History of My Family". She structured the pages similar to a family tree so the user could navigate through generations. Which website structure did she use?

Hierarchical

Jill is creating a webpage. Which tag will contain most of the information for the page as well as all information that will be displayed in the browser's window?

<body>