1. 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
  2. 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
  3. 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
  4. 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
  5. 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
  6. 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
  7. Question: Given the following code snippet: public class Student { public function Student () { trace("Student variable created"); } public function hello () : String { return "Hello World"; } } ------------------------------------------------------- public function helloWorld () : String { var student1 : Student; return student1.hello (); } What will the function helloWorld() return?

    A
    Hello World

    B
    Blank string

    C
    Program execution ends with a Runtime error

    D
    Compilation error

    Note: Not available
    1. Report
  8. Question: Which of the following types of variables can be accessed without creating an instance of a class?

    A
    Constant

    B
    Final

    C
    Static

    D
    Global

    Note: Not available
    1. Report
  9. Question: Which of these is not a valid access modifier?

    A
    Private

    B
    Protected

    C
    Internal

    D
    All of these valid.

    Note: Not available
    1. Report
  10. Question: When ActionScript can immediately judge an operation to be in violation of a security rule, the __________ exception is thrown, and if, after waiting for some asynchronous task to complete, ActionScript deems an operation in violation of a security rule, the __________ event is dispatched.

    A
    Security, SecurityErrorEvent.SECURITY_ERROR

    B
    SecurityError, SecurityErrorEvent.ERROR

    C
    SecurityError, SecurityErrorEvent.SECURITY_ERROR

    D
    Security, SecurityErrorEvent.ERROR

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