1. Question: Which kind of an error is thrown when parsing error occurs in the action script?

    A
    Type error

    B
    Syntax error

    C
    Argument error

    D
    Verify error

    Note: Not available
    1. Report
  2. Question: What will the output of the following trace statement? trace(myXML..employee.(lastName=="Zmed"));

    A
    All employee blocks are printed on the console.

    B
    The first employee block is printed on the console.

    C
    The complete structure of myXML is printed in the console.

    D
    Only the lastName tag with value "Zmed" is printed.

    Note: Not available
    1. Report
  3. Question: Given that two event listeners are registered for a component CompA as: CompA.addEventListener(MouseEvent.CLICK, func1); CompA.addEventListener(MouseEvent.CLICK, func2); What will happen when a click event is fired on CompA?

    A
    func1 is called but func2 is not called.

    B
    func2 is called but func1 is not called.

    C
    Either func1 or func2 are randomly chosen and called.

    D
    Both func1 and func2 are called.

    Note: Not available
    1. Report
  4. Question: The source of an ArrayCollection is of the type:

    A
    ArrayCollection

    B
    int

    C
    String

    D
    Array

    Note: Not available
    1. Report
  5. Question: When in application, in what order do the following events take place (starting from the first)?

    A
    Creation complete, pre-Initialize, Initialize, Application complete

    B
    pre-Initialize, Creation complete, Initialize, Application complete

    C
    pre-Initialize, Initialize, Application complete, Creation complete

    D
    pre-Initialize, Initialize, Creation complete, Application complete

    Note: Not available
    1. Report
  6. Question: Which of the following is not a correct way of adding an item to an Array myArr?

    A
    myArr.push(item);

    B
    myArr.addItem(item);

    C
    myArr[0] = item;

    D
    All of these

    Note: Not available
    1. Report
  7. Question: Which nature of ActionScript is depicted by the use of Events?

    A
    Synchronous

    B
    Asynchronous

    C
    Procedure oriented

    D
    Object oriented

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