1. Question: Which of the following statements is correct?

    A
    The '.' and '@' operator can be used only to read data.

    B
    The '.' operator can be used to read data and write data but the '@' operator can be used only to read data.

    C
    The '.' and '@' operator can be used both to read and write data.

    D
    The '@' operator can be used to read data and write data but the '.' operator can be used only to read data.

    Note: Not available
    1. Report
  2. Question: Which of the following is not a valid Action script data type?

    A
    int

    B
    uint

    C
    long

    D
    String

    Note: Not available
    1. Report
  3. Question: The only difference between a timer and a loop is that timers are machine speed independent while loops are not.

    A
    True

    B
    False

    Note: Not available
    1. Report
  4. Question: Look at the following function declarations and then choose the correct option. i. public function myFunction():*; ii. public function myFunction():void; iii. public function myFunction():String;

    A
    only i & ii are valid

    B
    only ii & iii are valid

    C
    only i & iii are valid

    D
    i, ii & iii are all valid

    Note: Not available
    1. Report
  5. Question: What will be the output of the following code snippet? var myArray1 : Array = new Array ("One", "Two", "Three"); for(var i : int=0; i<3; i++) { delete myArray1[i]; } trace(myArray1.length);

    A
    Undefined

    B
    0

    C
    3

    D
    Runtime error: Null pointer reference

    Note: Not available
    1. Report
  6. Question: Given the following instantiation of a date type variable, choose the statement which is true. var myDate : Date = new Date()

    A
    The value of myDate is the current time stamp.

    B
    The value of myDate is an instance of the date class with all values set to either 0 or blank.

    C
    The value of myDate is null.

    D
    None of these

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

    A
    While accessing child nodes of an XMLList, the array access operator '[]' can be used and the starting Index is 0.

    B
    While accessing child nodes of an XMLList, the array access operator '[]' can be used but the starting Index in this case is 1.

    C
    While fetching children of an XMLList, the children() method of the XML class can be used interchangeably with the '*' operator.

    D
    All of the above statements are correct.

    Note: Not available
    1. Report
  8. Question: Which of the following Errors does not occur at runtime?

    A
    Compile time error

    B
    Runtime-error

    C
    Synchronous error

    D
    Asynchronous error

    Note: Not available
    1. Report
  9. Question: The useWeakReference parameter in the addEventListener method is used to:

    A
    make the listener eligible for garbage collection

    B
    make the Component for which the event is registered eligible for garbage collection.

    C
    make the parent of the Component for which the event is registered eligible for garbage collection.

    D
    All of these

    Note: Not available
    1. Report
  10. Question: Given the following statements about the try/catch/finally block, choose the correct option.

    A
    Try is optional but catch and finally are required.

    B
    Catch is optional but try and finally are required.

    C
    Finally is optional but try and catch are required.

    D
    All three blocks are required.

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