1. Question: Which of the follownig is the correct method to open a new window?

    A
    popUp(PageURL,WindowName,settings);

    B
    window.launch(PageURL,WindowName,settings).

    C
    window.exec(PageURL,WindowName,settings);

    D
    window.open(PageURL,WindowName,settings);

    Note: Not available
    1. Report
  2. Question: What is the correct syntax for referring to an external script called "file.js"?

    A
    <script name="file.js" type=”text/javascript”></script>

    B
    <script href="file.js" type=”text/javascript” />

    C
    <script src="file.js" type=”text/javascript”></script>

    D
    <link src="file.js" type=”text/javascript” />

    Note: Not available
    1. Report
  3. 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
  4. Question: What does (12%5) return?

    A
    7

    B
    2

    C
    60

    D
    70

    Note: Evaluate (12%5) as (12 mod 5) [mod is determine the reminder of a division] 5|12|2 10 ------- 2 Here reminder is 2
    1. Report
  5. Question: Which of the following is not a mouse event?

    A
    onmousescroller

    B
    onclick

    C
    onmouseover

    D
    onmousemove

    Note: Not available
    1. Report
  6. Question: Which event is triggered when a field loses the focus?

    A
    onmouseout

    B
    onblur

    C
    onunfocus

    D
    onkeyup

    Note: Not available
    1. Report
  7. Question: What statement (keyword) supplies the value of the function?

    A
    return

    B
    receive

    C
    take

    D
    print

    Note: Not available
    1. Report
  8. Question: Which of the following is true if A and B are not equal?

    A
    if A not = b

    B
    if A != B

    C
    if (A not = B)

    D
    if (A != B)

    Note: Not available
    1. Report
  9. Question: What command skips the rest of a case statement?

    A
    return

    B
    exit

    C
    continue

    D
    break

    Note: Not available
    1. Report
  10. 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
Copyright © 2025. Powered by Intellect Software Ltd