Need Help About My College Assaignment !!

Discussion in 'Programming' started by abacus, Jul 30, 2009.

  1. #1
    Hello Friends .. I'm a student of a college and i need help from you guys who know HTML well coz, i'm in a trap with my college assaignment. i think its a very simple job who has a very good knowledge on HTML. Please help me. If you want some honour($) im ready to pay. But, please help me !!! Please. My hotmail :

    Questions :

    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 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"

    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.

    Which form event is fired on the click of a button using a button tag with its type attribute value equal to submit?
    a. onload
    b. onsubmit
    c. onunload
    d. onreset

    Which of the following options about the <select> tag is/are incorrect?
    a. The name attribute should be specified.
    b. The disabled attribute disables the drop-down list.
    c. The multiple attribute allows the user to choose multiple options.
    d. The text specified in the value attribute is displayed in the drop-down list.


    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. <textarea rowcount="8" colcount="20"> Your comments ....</textarea>
    d. <input type="text" maxlength="100" />


    For allowing the user to select only one radio button from a group of radio buttons:
    a. The name of an input tag must be same for all the radio buttons.
    b. The value of an input tag must be same for all the radio buttons.
    c. The display text of an input tag must be same for all the radio buttons.
    d. All the radio buttons must be added to same group using <group> tag.


    Which of the following is/are invalid values for the shape attribute of an area tag?
    a. circle
    b. tri
    c. rect
    d. poly


    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.


    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


    Which of the following font styling tags is/are not valid?
    a. <small>
    b. <i>
    c. <b>
    d. <big>
    e. <large>


    Which of the following is correct for an image?
    a. An image must be resized in an editor to fit in the specified space on a webpage.
    b. If you have a big image but specify smaller height and width attributes in the <img> tag, only the top-left portion of the image will be displayed in the browser.
    c. Both of the above are correct.
    d. The height and width attributes allow resizing the image on the webpage.


    The use of the deprecated align attribute with an img tag results in:
    a. Text that is aligned with the bottom of the image if the value of align is bottom.
    b. Text that is aligned with the top of the image if the value of align is top.
    c. Text that is located to the left of the image if the value of align is left.
    d. Text that is located to the right of the image if the value of align is right.


    Which of the following tags can be used in place of a button tag?
    a. legend
    b. ol
    c. input
    d. dl

    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 not formed correctly


    Which of the following would give a yellow background to the web page?
    Note: The code used in the "correct" answer below was deprecated in HTML 4.01! Use styles instead for new code.
    a. <body backcolor="Yellow">
    b. <body background="Yellow">
    c. <body bgcolor="Yellow">
    d. <body color="Yellow">


    How will you import a style sheet named basic.css in your Web page?
    a. <import name="stylesheet" url="basic.css">
    b. <link rel="stylesheet" type="text/css" href="basic.css">
    c. <style name="stylesheet" url="basic.css">
    d. <link item="stylesheet" type="text/css" href="basic.css">


    Which of the following is not an attribute of a meta tag?
    a. name
    b. content
    c. http-equiv
    d. type

    Which tag is meant for creating inline frames that display other HTML pages?
    a. img
    b. frame
    c. iframe
    d. url

    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


    Which of the following values is/are valid for the align attribute of a <td> tag?
    a. left
    b. right
    c. center
    d. offset

    Which of the following is/are not correct for an action attribute for a form tag?
    a. It is an essential attribute of the form tag.
    b. The action attribute can be defined at runtime.
    c. If the URL is not provided to the action attribute, the form will not submit user data anywhere.
    d. If the value for action is null (action=""), then the form submits user data to itself.


    Choose the incorrect statement:
    a. The <em> tag emphasizes the given text by italicizing it.
    b. The <code> tag indicates that the text inside is an example of typed code.
    c. The <var> tag indicates that the text inside the tag has been revised.
    d. The <strong> tag is for strongly emphasizing the text.

    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

    Your website has moved to some other address. What HTML 4.01 code would automatically redirect a user to that address within 3 seconds of landing on the old address?
    a. <meta http-equiv="refresh" content="3; url=www.newurl.com">
    b. <meta http="refresh" url="www.newurl.com">
    c. <meta scheme="refresh" name="redirect" http="www.newurl.com">
    d. <meta http-equiv="redirect" content="3" http="www.newurl.com">

    Which of the following items should not be used in the address tag?
    a. physical contact address of the Web site
    b. contact email address for the Web site
    c. contact signature
    d. abbreviations

    Which of the following attributes is/are related to the <img> tag?
    a. height
    b. alt
    c. src
    d. All of the above

    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.

    You have the following directory structure.
    webroot->products->ordered->delivered
    The products directory has a page called Products.html and the delivered directory has a page called Delivered.html. You want to provide a link to the Products page on Delivered.html. The ideal code should be:
    a. <a href="././Products.html"> All Products </a>
    b. <a href="../../Products.html"> All Products </a>
    c. <a href=".../.../Products.html"> All Products </a>
    d. <a href="../Products.html"> All Products </a>
    e. <a href="Products.html"> All Products</a>

    What do you infer from the following code?
    <a href="http://www.expertrating.com">Expert Rating</a>
    a. This href is using absolute path for linking.
    b. This href is an example of relative path linking.


    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 should be used to redirect users to other URLs.
    d. It is mandatory to specify its name or scheme attributes.


    Which of the following tags 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 computer programming book has to go online. Which of the following tags is ideal for displaying the program snippets?
    a. <emp>
    b. <code>
    c. <dfn>
    d. <cite>

    Which of the following values is/are valid for the valign attribute of a <tr> tag?
    a. base
    b. bottomline
    c. middle
    d. baseline
    e. None of the above


    You are designing a website for one of your clients. You have to use an applet named cal.class to show a scrollable calendar. Which of the following is the recommended way of calling it if you are using HTML 4.01?
    a. <applet code="cal" width="180" height="180"></applet>
    b. <img src="cal"></img>
    c. <object classid="APPID" id="cal" width="180" height="180"></object>
    d. <sub id="cal"></sub>

    While designing the links page of your website, you want the link to open in a new browser window. How will you implement this with HTML?
    a. <anchor href="http://www.mailer.com">Mailer</anchor>
    b. <anchor href=http://www.mailer.com target=_blank>Mailer</anchor>
    c. <A HREF="http://www.mailer.com">Mailer </A>
    d. <a href="http://www.mailer.com" target="_blank">Mailer</a>


    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.


    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>


    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... -!>


    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 values is/are not valid for the align attribute of a heading tag? Note: The align attribute was deprecated in HTML 4.01. Use styles instead in new coding.
    a. right
    b. left
    c. middle
    d. center


    You placed four radio buttons on a web form. You want the users to specify whether they are male or female and whether they are married or single. The code is as follows:
    Male: <input type="radio" checked name="chk" value="male">
    Female: <input type="radio" name="chk" value="female">
    Married: <input type="radio" checked="checked" name="chk" value="married">
    Single: <input type="radio" name="chk" value="single">
    What is wrong with the above code?
    a. It will allow the user to choose only the male and the married options.
    b. It will allow the user to choose only the female and single options.
    c. It will allow the user to choose only one option out of the four.
    d. It will allow the user to choose all the four options at the same time.


    You specified a base tag and anchors as follows:
    1. <base target="_blank">
    2. <a href="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.
     
    abacus, Jul 30, 2009 IP
  2. manjifera

    manjifera Well-Known Member

    Messages:
    232
    Likes Received:
    4
    Best Answers:
    1
    Trophy Points:
    118
    #2
    hey i have added you in msn. will help there!
     
    manjifera, Jul 31, 2009 IP
  3. grandllama

    grandllama Greenhorn

    Messages:
    48
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    18
    #3
    I think I need to have a talk with your teacher - looks like a pop quiz I wrote when I was teach intro classes while a grad student ROFL
     
    grandllama, Jul 31, 2009 IP
  4. msm2020

    msm2020 Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Can Add answer here or send it to me , Please i need answers
    thanks
     
    msm2020, Dec 4, 2010 IP
  5. drhowarddrfine

    drhowarddrfine Peon

    Messages:
    5,428
    Likes Received:
    95
    Best Answers:
    7
    Trophy Points:
    0
    #5
    Were you not in class that day? Did they not teach you this stuff?
     
    drhowarddrfine, Dec 4, 2010 IP
  6. msm2020

    msm2020 Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    i am not a student ,
    this good questions and i want to know the answers
    thanks
     
    msm2020, Dec 7, 2010 IP
  7. sharif_srs

    sharif_srs Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    i also need this. skype id: mdsharifulhaque gtalk: sharif.srs mail:
     
    sharif_srs, Jan 29, 2012 IP
  8. mmerlinn

    mmerlinn Prominent Member

    Messages:
    3,197
    Likes Received:
    819
    Best Answers:
    7
    Trophy Points:
    320
    #8
    Moderators should close this thread.

    If the OP does not have his answer by now, he has flunked out and no longer needs it.
     
    mmerlinn, Jan 29, 2012 IP
  9. drhowarddrfine

    drhowarddrfine Peon

    Messages:
    5,428
    Likes Received:
    95
    Best Answers:
    7
    Trophy Points:
    0
    #9
    I think the OP is a mod and that's why it wasn't deleted. Yes, he flunked out.
     
    drhowarddrfine, Jan 29, 2012 IP
  10. NetStar

    NetStar Notable Member

    Messages:
    2,471
    Likes Received:
    541
    Best Answers:
    21
    Trophy Points:
    245
    #10
    ugh... this is why Degrees mean shit without Certifications.
     
    NetStar, Jan 29, 2012 IP
  11. mmerlinn

    mmerlinn Prominent Member

    Messages:
    3,197
    Likes Received:
    819
    Best Answers:
    7
    Trophy Points:
    320
    #11
    Degree = Piece of paper that proves you are an educated idiot.
     
    mmerlinn, Jan 29, 2012 IP
  12. NetStar

    NetStar Notable Member

    Messages:
    2,471
    Likes Received:
    541
    Best Answers:
    21
    Trophy Points:
    245
    #12
    That statement would only seem true to an uneducated idiot...
     
    NetStar, Jan 30, 2012 IP
  13. FizixRichard

    FizixRichard Peon

    Messages:
    26
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #13
    Is that pop quiz for real?

    How about questions that are actually useful and relevant and how about some modern standards. I'm sure my degree was a bit more in depth than that.
     
    FizixRichard, Jan 31, 2012 IP