Attention Please!

For the LATEST ODESK TEST ANSWERS 2014 to till date, you can visit my new site which is www.webustaad.net. To view the website, please click here

Saturday 19 January 2013

HTML 4.01 Test Answers


HTML 4.01 Test answer have all questions. In this blog you can pass this test in short time period.

Which of the following statements is correct for a blockquote?

a. It make the text a bit bigger for emphasizing.
b. It defines the start of a long quote.
c. It makes the text slightly bolder.

Which of the following is incorrect about the relation between HTML and XHTML?

a. XHTML is a stricter and cleaner version of HTML.
b. XHTML is almost identical to HTML 4.01.
c. XHTML and HTML both are used to generate dynamic content.
d. XHTML brings together the elements of HTML and the syntax of XML.

Choose the incorrect statement(s):

a. An HTML attribute is additional information included inside a tag.
b. HTML is case sensitive.
c. All the HTML4.01 tags must be paired.
d.  Your browser may appear to correctly use newly deprecated code for the present, but its support for deprecated code could be halted at any time after the browser is updated.

Which of the following tags can be used in place of a button tag?

a. legend
b. ol
c. input
d. dl

Which of the following is not a valid input type of the form tag?

a. checkbox
b. image
c. hidden
d. button
e. All are valid

It is not necessary to give the coordinates for an image or object defined within an area tag, if the value of its shape attribute is:

a. circle
b. poly
c. default
d. rect

Which of the following is/are a valid value for the type attribute of the input tag?

a. text
b. icon
c. reset
d. password

Which of the following is not correct for an action attribute for a form tag?

a. The action attribute can be defined at runtime.
b. If the value for action is null (action=""), then the form submits user data to itself.
c. If the URL is not provided to the action attribute, the form will not submit user data anywhere.
d. None of the above

Which of the following values is/are valid for the align attribute of a tag?

a. left
b. right
c. center
d. offset

What do you infer from the following code? <a href = "http://www.expertrating.com"> Expert Rating

a. This href is using absolute path for linking.
b. This href is an example of relative path linking.

Which of the following statements is correct for the tag?

a. The text under block quote must be enclosed in a block level element in a strict DTD document.
b. The attribute named cite must be specified.
c. Closing the tag is optional.
d. It places an empty line after the text.

Which of the following is/are not true for a paragraph tag in HTML 4.01?

a. The text must be enclosed in <p> and </p> tags.
b. It creates an empty line above its starting line.
c. It cannot be used within a <td> tag.
d. It creates an empty line after its ending line.

A piece of text contains many blank spaces within it. Which of the following tags would be suitable to display the text as it was originally formatted?

a. td
b. p
c. ls
d. pre

You are creating several web pages for a website that contain several rather large data tables, many of which are somewhat similar in the number of columns, rows, and in other common table formatting. In addition, CSS will be employed for formatting the tables. Which one of the following types of CSS has the highest priority over the others and typically requires the greatest total amount of code space for the entire website for formatting the various <td> table cells?

a. External style sheet
b. Inline style
c. Internal style sheet
d. Browser default

Which of the following attributes is/are related to the <img> tag?

a. height
b. alt
c. src
d. All of the above
The following link is placed on an HTML webpage.<a href="http://msdn.com/" target="_blank"> MSDN </a>What do you infer from it?

a. It will open the site msdn.com in the same window.
b. It will open the site msdn.com in a new window.
c. It will open the site msdn.com in a frame below.
d. It will not be clickable as it is not formed correctly.

Is the following code valid in HTML 4.01 Strict?
<ul><li><ol><li>A</li><li>B</li><ul><li>Item1</li><li>Item 2</li></ul><li>C</li></ol></li></ul>

a. Perfectly valid.
b. Invalid because you should not have three levels of nesting in the lists.
c. Invalid because you should not have an unordered list within an ordered list.
d. Invalid because a <ul> tag should not conflict with an <ol> tag at the same list level.

Which of the following values for the scrolling attribute for the frame tag is not valid?

a. yes
b. default
c. auto
d. no

Which of the following is/are not correct for a <meta> tag in HTML 4.01?

a. It is more useful if it is placed in a head element.
b. It can be used to specify the keywords for the search engines.
c. It can be used to redirect users to other URLs.
d. It is mandatory to specify its name or scheme attributes.

The tag that is used to pass the parameters to an applet is:

a. appletpar
b. applet
c. param
d. val

Which of the following attributes is/are valid for a select tag contained within a form tag?

a. name
b. size
c. multiple
d. All of the above

For the following items of a <select> list:
<option value="89">Item 1</option>
<option value="90">Item 2</option>
Which of the following values would be passed on by clicking the submit button on selecting Item 2 from the list?

a. 89
b. 90
c. Item 1
d. Item 2

You have to add a list of products in a drop-down list. What will you use to group the identical products under a category name?

a. optgroup
b. option
c. menu
d. var
e. There is no way to do this

Which of the following shows the basic tag structure of an HTML document?

a. <html><head><body></body></html>
b. <html><body></body></html>
c. <html><head></head><body></body></html>
d. <html><head></head></html>

You want to provide a form field to the users for writing lengthy comments on the quality of the services provided by you. Which of the following tags will you use?

a. <textarea rows="8" cols="20"> Your Comments.... </textarea>
b. <textarea row="8" col="20"> Your Comments.... </textarea>
c. <textarearowcount="8" colcount="20"> Your Comments.... </textarea>
d. <input type="text" maxlength="100"/>

Which of the following set of coordinate values refers to an image defined by the area tag with the value of poly for its shape attribute?

a. coords="150,217,190,257,150,297,110,257"
b. coords="150,190,150,110"
c. coords="150,217,190,257,150"
d. coords="150,110,190,220,150,150,120"

What is meant by the cellspacing attribute?

a. It makes the cell span more than one column.
b. It specifies the space between the cell wall and the contents of the cell.
c. It specifies the space between two cells.
d. It makes the cell span more than one row.

Which of the following attributes comes in handy when borders have to be put between groups of columns instead of every column?

a. col
b. colgroup
c. rowspan
d. row

A few lines in an HTML paragraph are to be formatted differently from the rest of the lines. Which tag will assist in this?

a. div
b. p
c. span
d. format

How will you specify a comment in an HTML document?

a. <!!- Here is a comment... -!>
b. <-Here is a comment.. ->
c. <!-- Here is a comment.. -->
d. <! Here is a comment... -!>

Which of the following is correct regarding the frame attribute in the <table> tag?

a. It is used to add a frame to the table.
b. A hsides value for the frame attribute will show the border lines for horizontal sides only.
c. A hsides value for the frame attribute will not show the border lines for horizontal sides only.
d. A hsides value for the frame attribute will add a scrollable frame on the horizontal sides.

What is meant by cellpadding?

a. It makes the cell span more than one column.
b. It specifies the space between the cell wall and the contents of the cell.
c. It specifies the space between two cells.
d. It makes the cell span more than one row.

Within a table cell <td>:

a. <p></p> tags cannot be used.
b. <ol></ol> tags cannot be used
c. <table></table> tags cannot be used.
d. <form></form> tags cannot be used.
e. All the above tags could be used.

A developer wrote this image tag:
<imgsrc ="states.gif" width ="330" height ="406" alt="States"
usemap ="#statemap" />

What code should follow this?

a. <map id ="statemap" name="statemap">
<area shape ="rect" coords ="0,0,82,126" href="state1.htm"
alt="State1" />
</map>
b. <map id ="statemap" name="statemap"></map>
<area shape ="rect" coords ="0,0,82,126" href="state1.htm"
alt="State1" />
c. <map id ="statemap" name="statemap">
<img area shape ="rect" coords ="0,0,82,126" href="state1.htm"
alt="State1" /></map>
d. <map id ="statemap" name="statemap">
<img area shape ="rect" coords ="0,0,82,126" href="state1.htm"
alt="State1" /></map>

You want to display a table listing out customer names and their contact information. The heading of the table is shown in the figure. What is the code for creating the first line of the table heading?

a. <tr>
<th>Customer Name</th>
<thcolspan=3>Contact</th>
</tr>
b. <tr>
<th>Customer Name</th>
<thcellpadding=3>Contact</th>
</tr>
c. <tr>
<th>Customer Name</th>
<throwspan=3>Contact</th>
</tr>
d. <tr>
<th>Customer Name</th>
<thcellspacing=3>Contact</th>
</tr>

What would you infer from the following code in an HTML 4.01 Web site? <body topmargin=2 leftmargin=2>

a. The top margin and left margin of the webpage is 2 pixels.
b. The bottom margin and right margin of the web page is 2 pixels.
c. Both of the above.
d. None of the above. The topmargin and leftmargin attributes are not valid HTML 4.01 body attributes.

You specified a base tag and anchors as follows:

1. <base target="_blank">
2. <ahref="http://www.yahoo.com">Yahoo</a>
3. <a href="http://www.google.com" target="_top">Google</a>

Which of the following is true for the above code?

a. Only the Yahoo link will open in a new window.
b. Only the Google link will open in a new window.
c. Both links will open in a new window.
d. Both links will open in the same window.

On one of your Web pages named Listing.html, you specified a target like this:

<a name="target4">Old Listing</a>
How will you make a link to the above target?

a. <a url="#target4">Check Old Listing as well</a>
b. <a href="#target4">Check Old Listing as well</a>
c. <link url="target4">Check Old Listing as well</link>
d. <a href="Listing.target4">Check Old Listing as well</a>

Which attribute specifies the submit URL in a form tag?

a. method
b. action
c. name
d. id

The tag which is used to show monospaced text is:

a. <td>
b. <th>
c. <tt>
d. <b>

58 comments:

Anonymous said...

My family members every time say that I am wasting my time here at net, but I know
I am getting experience daily by reading thes good articles.


Feel free to visit my web site - raspberry ketones diet

Anonymous said...

Fantastic goods from you, man. I have understand your stuff previous to and
you're just extremely wonderful. I actually like what you have acquired here, certainly like what you're saying and the way in which you say it.
You make it entertaining and you still take care of to keep it
sensible. I can not wait to read far more from you.
This is really a tremendous site.

Feel free to surf to my web-site :: Apple strm cell serum

Anonymous said...

Good article. I certainly love this site. Thanks!

My web-site ... Garcinia Cambogia

Anonymous said...

I've been browsing online more than 4 hours today, yet I never found any interesting article like yours. It is pretty worth enough for me. Personally, if all site owners and bloggers made good content as you did, the web will be a lot more useful than ever before.

Feel free to surf to my blog post rippedmusclextremeblog.com

Anonymous said...

Undeniably consider that that you stated. Your favourite justification
seemed to be on the web the easiest thing to remember of.
I say to you, I certainly get annoyed even as people
think about concerns that they just don't recognize about. You managed to hit the nail upon the top as neatly as outlined out the entire thing without having side effect , folks can take a signal. Will likely be back to get more. Thank you

My site ... power pump muscle builder

Anonymous said...

I all the time used to read post in news papers but now as I am a user of internet thus
from now I am using net for posts, thanks to
web.

Have a look at my weblog ... best anti aging creams

Anonymous said...

Pretty nice post. I just stumbled upon your blog and wanted to say that I've really enjoyed browsing your blog posts. After all I will be subscribing to your rss feed and I hope you write again very soon!

Feel free to surf to my web blog :: Best Wrinkle Cream

Anonymous said...

Howdy! Would you mind if I share your blog with my facebook group?

There's a lot of people that I think would really enjoy your content. Please let me know. Thank you

Here is my web page - Beyond Raspberry ketone Review

Anonymous said...

Do you have a spam issue on this website; I also am
a blogger, and I was wanting to know your situation; many of us have
developed some nice methods and we are looking to exchange techniques
with others, be sure to shoot me an email if interested.


My web blog Test Force Xtreme Testosterone

Anonymous said...

Hello would you mind letting me know which hosting company you're using? I've loaded your blog in 3
completely different web browsers and I must say this blog loads a lot faster then most.
Can you suggest a good web hosting provider at a honest price?
Thanks, I appreciate it!

Also visit my blog post ... Weight Loss Diet Patch

Anonymous said...

I'm gone to convey my little brother, that he should also pay a quick visit this web site on regular basis to obtain updated from most recent news.

Feel free to surf to my page ... Elevate GF Muscle

Anonymous said...

Saved as a favorite, I like your blog!

Review my webpage - Tru VIsage

Anonymous said...

Thanks , I have recently been searching for info approximately this topic for ages and yours is the best I
have discovered till now. However, what concerning the conclusion?
Are you sure about the supply?

Feel free to visit my page ... by acai ultral lean

Anonymous said...

When someone writes an article he/she keeps the idea of
a user in his/her brain that how a user can know it.
Therefore that's why this post is great. Thanks!

My blog: Order Vimax Male Enhancement

Anonymous said...

This particular hand-operated machine can
be your most painless mode of every one of juices processors.
Know which approaches to quite a number of factors you will locate a juice extractor.

Pastries, cakes or bread furthermore sweets
are probably the lastly tasks that purchase have on all their inventory.



Check out my web page ... hand blender cuisinart

Anonymous said...

Hello, I enjoy reading all of your article post.
I wanted to write a little comment to support you.

http://nevaalcorn.thoughts.com/posts/wrinkle-cream--4

My webpage wrinkle cream

Anonymous said...

I'm now not certain the place you are getting your info, however good topic. I must spend some time studying much more or working out more. Thank you for excellent information I was searching for this information for my mission.

http://www.vinschgauerland.info/wiki/Benutzer:Samiraama

Here is my blog post: anti-aging cream

Anonymous said...

My spouse and I stumbled over here by a different web
page and thought I should check things out. I like what I see so i am just following you.
Look forward to checking out your web page repeatedly.



my site ... Garcinia Cambogia Advanced

Anonymous said...

I have been browsing online more than 2 hours
today, yet I never found any interesting article like yours.

It's pretty worth enough for me. Personally, if all web owners and bloggers made good content as you did, the web will be a lot more useful than ever before.

Take a look at my website :: Xtrasize Supplement ()

Anonymous said...

Woah! I'm really loving the template/theme of this site. It's simple, yet effective.

A lot of times it's very difficult to get that "perfect balance" between user friendliness and visual appeal. I must say you've done a excellent job with this.
Additionally, the blog loads super fast for me on Firefox.
Excellent Blog!


http://www.mathieu.ro/wk/SuzettegtSeifertka

Look into my web-site :: Buy Vimax Male Enhancement

Anonymous said...

Quality posts is the crucial to interest the viewers to pay a visit the
website, that's what this web site is providing.

http://tinyurl.com/kfpkl8j

Here is my web page: turbo force reviews

Anonymous said...

This piece of writing will help the internet viewers for setting up new blog or even a blog from start to end.


my blog post :: Levela And Auravie (http://bookmarkentry.com)

Anonymous said...

I almost never drop comments, but i did a few searching and wound up here "HTML 4.01 Test Answers".
And I actually do have 2 questions for you if it's allright. Is it simply me or does it give the impression like some of these comments look as if they are left by brain dead folks? :-P And, if you are writing on additional online sites, I'd like to keep
up with anything new you have to post. Would you list
of every one of your shared pages like your Facebook page, twitter feed, or linkedin profile?


Also visit my website :: garcinia cambogia

Anonymous said...

Way cool! Some extremely valid points! I appreciate you
penning this post and also the rest of the website is really good.




http://www.wiki.joostina.ru/%D0%9E%D0%B1%D1%81%D1%83%D0%B6%D0%B4%D0%B5%D0%BD%D0%B8%D0%B5_%D1%83%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA%D0%B0:ErickaWhi

Here is my site; weight loss supplement

Anonymous said...

Hey just wanted to give you a quick heads
up. The text in your article seem to be running off the screen
in Ie. I'm not sure if this is a formatting
issue or something to do with browser compatibility but I thought I'd post to let you know.
The design look great though! Hope you get the problem resolved soon.

Cheers

Feel free to visit my web-site Raspberry ketone Diet

kuch bhi said...

I am so grateful for your article. Much thanks.
vovogifts

Rashid Awan said...

Thanks for sharing awesome Information
Removeable Guide

kuch bhi said...

Really helpful article. Great share
Mother GIFTS - VOVO

Instagram Downloader said...

Instagram Video Downloader

Instagram Video Downloader

Instagram Video Downloader

Instagram Video Downloader

Instagram Video Downloader

Instagram Video Downloader

Instagram Video Downloader

Anonymous said...

Awesome so nice i am seeing article like this . Really great help .Thanks
PREOWNED Iphones
PREOWNEDIphones6
Iphones8
preIphones
PREOWNED

Rashid Awan said...

Awesome so nice i am seeing article like this Really Helpfull Article Great
PreOwned Phones 8
PreOwned 8
Pre iPhones 8
iPhones 8
iPhones 8

Rashid Awan said...

Awesome so nice i am seeing article like this Really Helpfull Article Great
PreOwned Phones X
PreOwned X
Pre iPhones X
iPhones X
iPhones X

Rashid Awan said...

I am Searching for this article. Its really Great HelpFull Thanks
Download instagram Videos

Anonymous said...

I am Searching for this article. Its really Great HelpFull Article Thanks
PreOwnedphones 8
PreOwnedphones 8
PreOwnedphones 8
PreOwnedphones 8
PreOwnedphones 8
PreOwnedphones 8

Zubair Ahmad said...

"Thanks for this complete list. I have check all of these websites, all are in working
and I get many of the backlinks for my website. Thanks...

SocialSteeze Reviews n4g

SocialSteeze Review splice

SocialSteeze Reviews tupalo

SocialSteeze Reviews gfycat

SocialSteeze Reviews public

SocialSteeze Review gust

Rashid Awan said...

I also found, your posts very interesting. In fact after reading, Its really Great HelpFull Thanks
Linkd
Linkd
Linkd
Linkd
Linkd

Dhow cruise in dubai said...

dhow cruise dubai
dhow cruise creek

Dhow cruise in dubai said...

musandam oman tour
musandam oman
musandam tour

Vip evening desert safari said...

Very good information, it helped for my research.

Jesus Andrus said...

Give your furry friend the gift of comfort with this super soft Calminnng Pet Bed "IntenseDebate" for dogs and cats.
Our beds feature a round design, creating a cozy and protective atmosphere.
Pets will feel surrounded by love and warmth, allowing them to experience truly restful sleep.
The bolstered edge also acts as a headrest, offering additional orthopedic support.

Jesus Andrus said...

Give your furry friend the gift of comfort with this super soft Calminnng Pet Bed "4shared" for dogs and cats.
Our beds feature a round design, creating a cozy and protective atmosphere.
Pets will feel surrounded by love and warmth, allowing them to experience truly restful sleep.
The bolstered edge also acts as a headrest, offering additional orthopedic support.

Jesus Andrus said...

Give your furry friend the gift of comfort with this super soft Calminnng Pet Bed "Slides" for dogs and cats.
Our beds feature a round design, creating a cozy and protective atmosphere.
Pets will feel surrounded by love and warmth, allowing them to experience truly restful sleep.
The bolstered edge also acts as a headrest, offering additional orthopedic support.

Charlene Austin said...

I also found, your posts very interesting. In fact after reading, Its really Great HelpFull Thanks https://letsreadquran.com/

Charlene Austin said...

I am so grateful for your article. Much thanks. click here for more information about Quran https://letsreadquran.com/

Jesus Andrus said...

Give your furry friend the gift of comfort with this super soft Calminnng Pet Bed "Knowyourmeme" for dogs and cats.
Our beds feature a round design, creating a cozy and protective atmosphere.
Pets will feel surrounded by love and warmth, allowing them to experience truly restful sleep.
The bolstered edge also acts as a headrest, offering additional orthopedic support.

Jesus Andrus said...

Give your furry friend the gift of comfort with this super soft Calminnng Pet Bed "TED" for dogs and cats.
Our beds feature a round design, creating a cozy and protective atmosphere.
Pets will feel surrounded by love and warmth, allowing them to experience truly restful sleep.
The bolstered edge also acts as a headrest, offering additional orthopedic support.

Jesus Andrus said...

Give your furry friend the gift of comfort with this super soft BEST VINTAGE MOTORCYCLE HELMET "Intensedebate" for dogs and cats.
Our beds feature a round design, creating a cozy and protective atmosphere.
Pets will feel surrounded by love and warmth, allowing them to experience truly restful sleep.
The bolstered edge also acts as a headrest, offering additional orthopedic support.

Jesus Andrus said...

Give your furry friend the gift of comfort with this super soft BEST VINTAGE MOTORCYCLE HELMET "4Shared" for dogs and cats.
Our beds feature a round design, creating a cozy and protective atmosphere.
Pets will feel surrounded by love and warmth, allowing them to experience truly restful sleep.
The bolstered edge also acts as a headrest, offering additional orthopedic support.

Unknown said...

Give your furry friend the gift of comfort with this super soft Vingtage Motorcycle Helmet "List" for dogs and cats.
Our beds feature a round design, creating a cozy and protective atmosphere.
Pets will feel surrounded by love and warmth, allowing them to experience truly restful sleep.
The bolstered edge also acts as a headrest, offering additional orthopedic support.

Unknown said...

Give your furry friend the gift of comfort with this super soft Vintage Motorcycle Helmet "4shared" for dogs and cats.
Our beds feature a round design, creating a cozy and protective atmosphere.
Pets will feel surrounded by love and warmth, allowing them to experience truly restful sleep.
The bolstered edge also acts as a headrest, offering additional orthopedic support.

Unknown said...

Give your furry friend the gift of comfort with this super soft Vintage Motorcycle Helmet "500Px" for dogs and cats.
Our beds feature a round design, creating a cozy and protective atmosphere.
Pets will feel surrounded by love and warmth, allowing them to experience truly restful sleep.
The bolstered edge also acts as a headrest, offering additional orthopedic support.

Unknown said...

Give your furry friend the gift of comfort with this super soft Calming PED BED "DailyKitten" for dogs and cats.
Our beds feature a round design, creating a cozy and protective atmosphere.
Pets will feel surrounded by love and warmth, allowing them to experience truly restful sleep.
The bolstered edge also acts as a headrest, offering additional orthopedic support.

Unknown said...

Give your furry friend the gift of comfort with this super soft Calming PED BED "CatsOfAustralia" for dogs and cats.
Our beds feature a round design, creating a cozy and protective atmosphere.
Pets will feel surrounded by love and warmth, allowing them to experience truly restful sleep.
The bolstered edge also acts as a headrest, offering additional orthopedic support.

Dubai Sight Seeing Tours.ae said...

Amazing man! your article is very informative.

Dhow cruise in dubai said...

when you visit Dubai, then don't forget to visit the dhow cruise creek for dinner. It will be most enjoyable and memorable. visit us and enjoy dhow cruise Dubai.

Desert safari dubai said...

Excellent read, I just passed this on to a colleague who was doing some research about it. He has already bought me lunch because I found a smile on him so let me rephrase that. best luxury desert safari dubai

Anonymous said...

Wanted to visit Dubai ! but don't know what should you choose, not a problem i am preferring you some tours that you will love the most. i am giving this info by self experience. you can check these yours.
dubai tours
check here
check this also

Web Dev buddies said...

Experience the benefits of dietary supplements - vitamins, minerals, herbs, and amino acids!

Fat Burning Kitchen:
Achieve your weight loss goals with the Fat Burning Kitchen! This evidence-based online guide unveils the power of foods in boosting metabolism, curbing cravings, and enhancing satiety. Understand the role of essential nutrients like omega-3s, fiber, and cholesterol in supporting your overall health.

Ultra Prosta Care:
Take control of your prostate health with Ultra Prosta Care! This scientifically proven dietary supplement boosts libido, enhances urine flow, and returns the prostate to its normal size. Combat urinary tract infections and kidney issues effectively.Here is the Official Website of Ultra Prosta Care

Wealth DNA Code:
Experience a life-changing journey with Wealth DNA Code! This easy-to-understand program reveals the secrets to wealth, success, and optimal performance. Thousands have already transformed their lives by activating their innate wealth DNA.

Fast Brain Booster:
Optimize your brain with Fast Brain Booster! This tested dietary supplement tackles memory loss, brain fog, and reduced focus. With its scientifically researched blend of 14 ingredients, it aims to boost cognitive function effectively.

EndoPeak:
Elevate your men's health with EndoPeak! This multi-action capsule formula targets low hormones and physical energy effectively. Scientifically proven ingredients work synergistically for enhanced performance and stamina.

Post a Comment