1. Question: Which of the following is not a phase in the event propagation lifecycle?

    A
    Targeting

    B
    Bubbling

    C
    Cancelling

    D
    Capturing

    Note: Not available
    1. Report
  2. Question: What will be the output of the following code snippet? try { try { trace("<< try >>"); throw new ArgumentError ("throw this error"); } catch(error : ArgumentError) { trace("<< catch >> " + error); trace("<< throw >>"); throw error; } catch(error:Error) { trace ("<< Error >> " + error); } } catch (error:ArgumentError) { trace ("<< catch >> " + error); }

    A
    << try >> << catch >> ArgumentError: throw this error << throw >> << Error >> ArgumentError: throw this error << catch >> ArgumentError: throw this error

    B
    << try >> << catch >> ArgumentError: throw this error << throw >>

    C
    << try >> << catch >> ArgumentError: throw this error << throw >> << catch >> ArgumentError: throw this error

    D
    Compilation error: Nesting or try catch block not permitted

    Note: Not available
    1. Report
  3. Question: E4X in Action script is used to:

    A
    manipulate complex numeric data.

    B
    manipulate String data.

    C
    manipulate string and numeric data.

    D
    manipulate XML data.

    Note: Not available
    1. Report
  4. Question: What will be the output of the following trace statement? trace ("output: " + 10 > 20);

    A
    output: true

    B
    output: false

    C
    true

    D
    false

    Note: Not available
    1. Report
  5. Question: What will be the output of the following trace statement? trace(myXML..employee.*.@*);

    A
    An XMLList that includes every attribute defined on the employee tag, its parent and all descendants

    B
    An XMLList that includes every attribute defined on the employee's parent tag and all descendant tags

    C
    An XMLList that includes every attribute defined on the employee tag's descendants but not on the employee tag

    D
    An XMLList that includes every attribute defined on the employee tag and all its descendants

    Note: Not available
    1. Report
  6. Question: The default values of String and int type variables are:

    A
    null and 0 respectively.

    B
    "" and NaN respectively.

    C
    null and Nan respectively.

    D
    "" and 0 respectively.

    Note: Not available
    1. Report
  7. Question: Which of the following statements is not correct?

    A
    TimerEvent.TIMER is dispatched when one cycle of the timer is complete.

    B
    When the repeat count in a timer is set as 0, the timer continues indefinitely until the stop() method is invoked.

    C
    When a timer is instantiated, it starts automatically.

    D
    All of these statements are correct.

    Note: Not available
    1. Report
  8. Question: In the date formatter's format string, which of the following pattern letter represents minutes?

    A
    M

    B
    N

    C
    S

    D
    Y

    Note: Not available
    1. Report
  9. Question: While accessing the clipboard through the system manager class, we can:

    A
    read data from the clipboard.

    B
    write data to the clipboard.

    C
    read data from and write data to the clipboard.

    D
    Neither read data from nor write data to the clipboard.

    Note: Not available
    1. Report
  10. Question: Given two String variables str1="Hello" and str2="World", which of the following 2 ways can be used to concatenate the 2 strings and store the result in str1?

    A
    str1= str1+str2;

    B
    str2.concat(str1,str2);

    C
    str1.concat(str1,str2);

    D
    str1.concat(str2);

    E
    str2.concat(str1);

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