1. Question: Where does web worker(s) script run?

    A
    in foreground

    B
    in background

    C
    both a and b

    D
    Can’t determine

    Note: When executing scripts in an HTML page, the page becomes unresponsive until the script is finished. A web worker is a JavaScript that runs in the background, independently of other scripts, without affecting the performance of the page. You can continue to do whatever you want: clicking, selecting things, etc., while the web worker runs in the background.
    1. Report
  2. Question: Given statement is true or false: “Web worker script is dependent on other script”

    A
    Yes

    B
    No

    Note: Yes. A web worker script is dependent on other script. A web worker is a JavaScript that runs in the background, independently of other scripts, without affecting the performance of the page. You can continue to do whatever you want i.e clicking, selecting things, etc., while the web worker runs in the background.
    1. Report
  3. Question: terminate() method in HTML5 is used for____

    A
    terminate everything

    B
    terminate all method

    C
    terminate a web worker

    D
    terminate program

    Note: When a web worker object is created, it will continue to listen for messages until it is terminated. To terminate a web worker, and free browser or computer resources, use the terminate() method.
    1. Report
  4. Question: Which element provides a secure way to authenticate the user?

    A
    <keygen>

    B
    <datalist>

    C
    <output>

    D
    <input>

    Note: The "keygen" tag specifies a key-pair generator field used for forms. The HTML "keygen" tag is used to process Web forms with certificate management systems. The element generates a secure key and submits the public key.
    1. Report
  5. Question: <output> element represents_____

    A
    Authenticate the user

    B
    result of a calculation

    C
    pre-defined values

    D
    none of these

    Note: Not available
    1. Report
  6. Question: ____ property returns the url of current audio/video.

    A
    currentSrc

    B
    controls

    C
    ended

    D
    mediaGroup

    Note: Not available
    1. Report
  7. Question: When a word is too long, or you are afraid that the browser will break your lines at the wrong place, you can use the ______ element to add word break opportunities.

    A
    <video>

    B
    <track>

    C
    <summary>

    D
    <wbr>

    Note: "wbr" means "Word Break Opportunity". The "wbr" tag specifies where in a text it would be ok to add a line-break.
    1. Report
  8. Question: Which of the following term describes the art of making dynamic and interactive web pages?

    A
    DHTML

    B
    HTML

    C
    XHTML

    D
    XML

    Note: Dynamic HTML, or DHTML, is an umbrella term for a collection of technologies used together to create interactive and animated web sites by using a combination of a static markup language, a client-side scripting language for eg. JavaScript, a presentation definition language for eg. CSS, and the Document Object Model.
    1. Report
  9. Question: DHTML is the combination of 1) HTML 2) JavaScript 3) HTML DOM 4) CSS

    A
    1 and 2

    B
    3 and 4

    C
    all of the above

    D
    none of these

    Note: DHTML stands for "Dynamic HyerText Markup Language". Dynamic HyerText Markup Language (DHTML) is a combination of Web development technologies used to create dynamically changing websites.
    1. Report
  10. Question: <canvas > element is only a ______ to the graphics.

    A
    component

    B
    container

    C
    attribute

    D
    method

    Note: The HTML "canvas" element is a container for canvas graphics. An HTML canvas is a rectangular area on an HTML page. Canvas has several methods for drawing paths, boxes, circles, text, and graphic images.
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd