Home / CSE / HTML- CS :: Basic HTML

CSE :: HTML- CS

  1. Which of the following markup is correct?

    i. <b><i>is in error as tags cross</b></i>

    ii. <b><i>is not since tags nest</i></b>

  2. A.

     i

    B.

     ii

    C.

     i and ii

    D.

     None of the mentioned

    View Answer

    Workspace

    Discuss Discuss in Forum


  3. Which of the following is not a correct (X)HTML rule?

  4. A.

     Attributes should be quoted

    B.

     Tags should nest not tag

    C.

     Unused elements may be minimized

    D.

     Unknown attributes are ignored by the browser

    View Answer

    Workspace

    Discuss Discuss in Forum


  5. Identify the count of mistakes in the following markup.

    <html>

    <head>

    </head>

    <body>

    <li>

    <ul><p>Hello</p></ul>

    </li>

    <br>

    <hr>

    </body>

    </html>

  6. A.

     2

    B.

     3

    C.

     1

    D.

     0

    View Answer

    Workspace

    Discuss Discuss in Forum


  7. Rendering engine is not responsible for

  8. A.

     parsing the markup content (HTML)

    B.

     parsing style information (CSS, XSL, and so on)

    C.

     generating a visual presentation of the formatted content including media files referenced

    D.

     none of the mentioned

    View Answer

    Workspace

    Discuss Discuss in Forum


  9. Firefox uses _________ rendering engine.

  10. A.

     WebKit

    B.

     Gecko

    C.

     Trident

    D.

     Presto

    View Answer

    Workspace

    Discuss Discuss in Forum


  11. State true or false. It is faster to render HTML and CSS than to interpret and execute JavaScript.

  12. A.

     True

    B.

     False

    View Answer

    Workspace

    Discuss Discuss in Forum


  13. What is the use of “defer” attribute?

  14. A.

     It defers rendering of html page

    B.

     It defers script execution until the page has been rendered

    C.

     It defers rendering of css attributes

    D.

     None of mentioned

    View Answer

    Workspace

    Discuss Discuss in Forum


  15. Which of the following statements is false?

  16. A.

     async and defer attributes of script tag execute before the DOMContentLoaded event

    B.

     defer executes each script sequentially

    C.

     async executes each script when it is ready

    D.

     all older browsers supports async attribute

    View Answer

    Workspace

    Discuss Discuss in Forum


  17. Which of the following is used to read a HTML page and render it?

  18. A.

     Web browser

    B.

     Web server

    C.

     Web matrix

    D.

     None of the mentioned

    View Answer

    Workspace

    Discuss Discuss in Forum


  19. Which of the following is the first web browser?

  20. A.

     Nexus

    B.

     Netscape Navigator

    C.

     Internet Explorer

    D.

     Mosaic

    View Answer

    Workspace

    Discuss Discuss in Forum