Adobe 9A0-082 Exam Questions
9A0-082 Adobe? Flex 3 with AIR (Page 3 )

Updated On: 24-Feb-2026

Which of the following methods/properties are used in data traversing? Each correct answer represents a complete solution. Choose all that apply.

  1. filterFunctionQ
  2. afterLast
  3. moveNext()
  4. currer

Answer(s): B,C,D

Explanation:

The current, afterLast, and moveNext() methods/properties are used in data traversing. The following properties and methods supported by the IViewCursor interface allow a user to move through one data item at a time and determine what should be the current cursor position: Answer option A is incorrect. The filterFunction() is used to filter an Array Collection to only show the items that match certain criteria.



Which of the following keywords will be used if you want that a method can be accessed without requiring an instantiation of the class to which it belongs? Each correct answer represents a complete solution. Choose all that apply.

  1. function
  2. method
  3. static
  4. package

Answer(s): A,C

Explanation:

The static keyword will be used if you want that a method can be accessed without requiring an instantiation of the class to which it belongs. The syntax of using the static method is as follows: static final <data type> <variable>= <value>; A function is a small set of instructions designed to operate on its given input and perform some action or return some output. Answer option B is incorrect. A method is a programmed procedure that is defined as part of a class and included in any object of that class. Answer option D is incorrect. A package is used to organize a set of related classes and interfaces.



Which of the following code can be used to add a button component to the stage?

  1. bBtn.emphasized = true;
    Btn.emphasized = true;
    bBtn .addEventListener(MouseEvent.CLICK, Btn_handler); function Btn_handlerO:void {
    bBtn .setStyle("emphasizedSkin, "Button_selectedOverSkin'); }
  2. bBtn.emphasized = true;
    aBtn.emphasized = true;
    bBtn .addEventListener(MouseEvent.CLICK, Btn_handler); function Btn_handler(evt: MouseEvent):void {
    bBtn .setStyle("emphasizedSkin, "Button_selectedOverSkin); }
  3. bBtn.emphasized = true;
    aBtn.emphasized = true;
    bBtn .addEventListener(MouseEvent.CLICK);
    function Btn_handler(evt: MouseEvent):void {
    bBtn.setStyle(emphasizedSkin, "Button_selectedOverSkin); }
  4. bBtn.emphasized = true;
    aBtn.emphasized = true;
    bBtn .addEventListener(MouseEvent, Btn_handler);
    function Btn_handler(evt: MouseEvent):void {
    bBtn.setStyle("emphasizedSkin, Button_selectedOverSkin); }

Answer(s): B

Explanation:

When you add a button component to the stage, you need to define the cases of the button,

a listener for the button, and the handler function in the code frame. Therefore, the correct code is as follows:
bBtn.emphasized = true;
aBtn.emphasized = true;
bBtn.addEventListener(MouseEvent.CLICK, Btn_handler); function Btn_handler(evt:MouseEvent):void {
bBtn.setStyle('emphasizedSkin', "Button_selectedOverSkin"); }



Which of the following access attributes in ActionScript 3.0 allows access only to the methods of the class itself, and any other class extending this class?

  1. Internal
  2. Public
  3. Protected
  4. Private

Answer(s): C

Explanation:

Access attributes are used to control access of the users from all the properties and methods of a particular class. These attributes are written prior to the names of the classes that decide access and modification privileges for the users. Different types of access attributes are as follows:



Which static properties of the XML class determine how they parse and expose data to E4X expressions? Each correct answer represents a complete solution. Choose two.

  1. ignoreComments
  2. ignoreEscape
  3. ignoreString
  4. ignoreWhitespace

Answer(s): A,D

Explanation:

properties, that determine how the XML class should parse and expose data to E4X expressions, are as follows:
· ignoreComments: If the ignoreComments value is true, it strips comments out of an XML string during the parsing process.
· ignoreProcessinglnstructions: If the ignoreProcessinglnstructions value is true, it strips processing instructions out of an XML string during the parsing process. · ignoreWhitespace: If the ignoreWhitespace value is true, it removes beginning and ending white space characters from text nodes during the parsing process.

Answer options C and B are incorrect. Both are invalid properties.






Post your Comments and Discuss Adobe 9A0-082 exam dumps with other Community members:

Join the 9A0-082 Discussion