1. Question: Which is the correct parent tag of <legend> tag?

    A
    fieldset

    B
    form

    C
    frame

    D
    table

    Note: Not available
    1. Report
  2. Question: Which is the correct parent tag of <caption> tag?

    A
    <table>

    B
    <frame>

    C
    <form>

    D
    <object>

    Note: Not available
    1. Report
  3. Question: Which of the following tag has alt attribute?

    A
    <applet>

    B
    <table>

    C
    <a>

    D
    <img>

    Note: Not available
    1. Report
  4. Question: Which is the correct layout for the following code?
    <table width="39%" border="1" cellspacing="0" cellpadding="0">
      <tr>
        <td colspan="2">&nbsp;</td>
    <td width="36%">&nbsp;</td>
      </tr>
      <tr>
        <td width="26%">&nbsp;</td>
        <td width="38%" rowspan="2">&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>&nbsp;</td>
    <td>&nbsp;</td>
      </tr>
    </table>

    A
    table marge1

    B
    table marge2

    C
    table marge3

    D
    table marge4

    Note: Not available
    1. Report
  5. Question: Which are the correct code fragment for making the following list?
    1. Apple
    2. Mango
    3. Orange

    A
    <ol type="1"> <li>Apple</li> <li>Mango</li> <li>Orange</li> </ol>

    B
    <ul> <li>1. Apple</li> <li>2. Mango</li> <li>3. Orange</li> </ul>

    C
    <ol> <li>Apple</li> <li>Mango</li> <li>Orange</li> </ol>

    D
    <ol type="number"> <li>Apple</li> <li>Mango</li> <li>Orange</li> </ol>

    Note: Not available
    1. Report
  6. Question: Which is the correct syntex for making a frame set?

    A
    <html>
    <head>
    <title>index</title>
    </head>
    <frameset>
      <frame src="page1.htm" />
      <frame src="page2.htm" />
      <frame src="page3.htm" /> 
    </frameset>
    </html>

    B
    <html>
     <head>
    <title>index</title>
    </head>
    <body>
    <frameset>
       <frame src="page1.htm" />
       <frame src="page2.htm" />
       <frame src="page3.htm" /> 
     </frameset>
    </body>
    </html>

    C
    <html>
    <head>
    <title>index</title>
    </head>
    <body>
    <frameset>
      <frame href="page1.htm" />
      <frame href="page2.htm" />
      <frame href="page3.htm" /> 
    </frameset>
    </body>
    </html>

    D
    <html>
    <body>
    <frameset>
       <frame href="page1.htm" />
       <frame href="page2.htm" />
       <frame href="page3.htm" />
     </frameset>
    </body>
    </html>

    Note: Not available
    1. Report
  7. Question: onBlur, onClick, and onFocus are all ______ handlers.

    A
    elements

    B
    properties

    C
    methods

    D
    events

    Note: Not available
    1. Report
  8. Question: What is the HTML feature that divides a web page into two or more scrollable parts?

    A
    Split Page

    B
    Frame

    C
    Form

    D
    Table

    E
    textarea

    Note: Not available
    1. Report
  9. Question: Find errors of the following code for HTML validator error
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <table width="38%" border="1" cellspacing="0" cellpadding="0">
      <tr>
        <td height="48" colspan="3" valign="top"><img src="images/banner.jpg" /></td>
     </tr>
      <tr>
        <td width="21%" height="250" valign='top'> </td>
        <td width="55%" valign="top"><h1>Home Page</h1><br>
        <hr /></td>
        <td width="24%"></td>
      </tr>
      <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
    </table>
    </body>

    A
    Line 10: required attribute "alt" not specified

    B
    Line 14: end tag for "br" omitted, but OMITTAG NO was specified

    C
    Line 14, Column 41: an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified

    D
    No errors found

    Note: Not available
    1. Report
  10. Question: Which is the final version of HTML?

    A
    HTML 4.01 is the last version of HTML

    B
    HTML 1.1 is the last version of HTML

    C
    HTML 2.0 is the last version of HTML

    D
    HTML 5 is the last version of HTML

    Note: Not available
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd