1. Question: Which of the following is not a property of the window object?

    A
    document

    B
    menu

    C
    navigator

    D
    history

    Note: Not available
    1. Report
  2. Question: What does “=”  operator do?

    A
    Compares two values

    B
    Exchanges two values

    C
    Transfer data from right to the left

    D
    Transfer data from left to the right

    Note: Not available
    1. Report
  3. Question: What does DOM stands for?

    A
    Dynamic Object Model

    B
    Document Objective Model

    C
    Document Object Model

    D
    Not as above all

    Note: Not available
    1. Report
  4. Question: What does BOM stands for?

    A
    Browser Object Model

    B
    Building Object Model

    C
    Before Object Model

    D
    Not as above all

    Note: Not available
    1. Report
  5. Question: An object is embedded with _____.

    A
    Both functions and attributes

    B
    Only functions

    C
    Only attributes

    D
    nothing

    Note: Not available
    1. Report
  6. Question: which of the following is not returning by typeof unary operator?

    A
    number

    B
    string

    C
    boolean

    D
    null

    E
    object

    F
    function

    G
    datetime

    H
    undefine

    Note: Not available
    1. Report
  7. Question: What is the correct output for the following code?
    var str=”IDB-BISEW ROUND-13”;
    alert(str.indexOf(‘E’));

    A
    6

    B
    7

    C
    8

    D
    9

    Note: Not available
    1. Report
  8. Question: What is the correct output for the following code?
    var str=”IDB-BISEW ROUND-13”;
    alert(str.length);

    A
    17

    B
    16

    C
    18

    D
    15

    Note: Not available
    1. Report
  9. Question: How many times the text “IDB-BISEW” will be printed?
    var i=3;
    do{
       document.write(“IDB-BISEW<br/>”);
    i+=3;
    }while(i<10);

    A
    2 times

    B
    3 times

    C
    4 times

    D
    5 times

    Note: Not available
    1. Report
  10. Question: for loop is equivalence to:

    A
    while loop

    B
    do-while loop

    C
    recursive function

    D
    none of above

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