1. Question: The minimum version of flash player required to run Action script 3.0 is:

    A
    6.0

    B
    8.0

    C
    9.0

    D
    10.0

    Note: Not available
    1. Report
  2. Question: Which of the following syntax would be used to call a method name helloWorld(), (defined in the html Wrapper) from actionscript?

    A
    Application.call ("helloWorld");

    B
    ExternalApplication.call ("helloWorld");

    C
    ExternalInterface.call ("helloWorld");

    D
    helloWorld ();

    Note: Not available
    1. Report
  3. Question: Which of the following property of the String class returns the no. of characters in a string?

    A
    size

    B
    numChar

    C
    length

    D
    None of these

    Note: Not available
    1. Report
  4. Question: Given the declaration 'a timer', which of the following statements is correct? var myTimer:Timer = new Timer (500,5);

    A
    When the timer is started, the TimerEvent.TIMER event is dispatched 5 times with a difference of 0.5 seconds between 2 successive events.

    B
    When the timer is started, the TimerEvent.TIMER_COMPLETE event is dispatched 5 times with a difference of 500 seconds between 2 successive events.

    Note: Not available
    1. Report
  5. Question: Which of the following conditions must be true to facilitate the usage of seek() function of an Array Collection's Cursor?

    A
    The Array Collection must contain only similar data types.

    B
    The Array Collection must be sorted.

    C
    The Array Collection should have more than 278 objects.

    D
    None of these

    Note: Not available
    1. Report
  6. Question: Which of the following statements is true?

    A
    An array is a collection of objects of the same data type.

    B
    An array is a collection of objects irrespective of the data types.

    C
    The size of an array must be declared when the array is first declared.

    D
    The starting index of an array is 1.

    Note: Not available
    1. Report
  7. Question: The following regular expression : var pattern : RegExp = /\d+/; will match:

    A
    one or more words

    B
    zero or more words

    C
    one or more digits

    D
    zero or more digits

    Note: Not available
    1. Report
  8. Question: What does XML stand for?

    A
    Exclusive Markup Language

    B
    Extensible Markup Language

    C
    Exclusive Model Language

    D
    Extensible Model Language

    Note: Not available
    1. Report
  9. Question: A String is:

    A
    a series of zero or more characters.

    B
    a series of one or more characters.

    C
    a single character.

    D
    a set of no more than 5 characters.

    Note: Not available
    1. Report
  10. Question: What would happen when the following piece of code is compiled and run? var p : * = new ArrayCollection() //Line1 p.addItem("vishal"); //Line2 p.addItem(24); //Line3 p= new Date(); //Line4 var mydate : Date = p; //Line5

    A
    Compilation error at line1

    B
    Compilation error at line4

    C
    Compilation error at line5

    D
    No error. The code will compile and run without errors.

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