Adobe 9A0-082 Exam (page: 2)
Adobe 9A0-082 ? Flex 3 with AIR
Updated on: 31-Mar-2026

Viewing Page 2 of 17

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.



What is the default resultFormat when complex data is returned by the <mx.HTTPService> class?

  1. Object
  2. Plain text
  3. Raw XML
  4. ActionScript tree of objects

Answer(s): A

Explanation:

Object is the default resultFormat when complex data is returned by the <mx. HTTPService> class. The resultFormat property of the HTTPService component determines how data is exposed in the Flex application when it is received from the server. The values of the result Format property are as follows:



What is the way to control the size and position by anchoring components sides, centers, or baselines to locations in their container?

  1. Explicit sizing
  2. Percentage-based sizing
  3. Default sizing
  4. Constraint-based layout

Answer(s): D

Explanation:

The various ways to control the size of visual components provided by the Flex sizing and layout mechanisms are as follows:

· Default sizing: It automatically determines the sizes of controls and containers. · Explicit sizing: It is used to set the height and width properties to pixel values. By using this, a user can set the component dimension to absolute sizes, and Flex does not override these values.
· Percentage-based sizing: It is used to specify the component size as a percentage of its container size. By using this, a user can specify the percentHeight and percentWidth properties in MXML tags.
· Constraint-based layout: It is used to control the size and position by anchoring components sides, centers, or baselines to locations in their container. A user can do it by specifying the top, bottom, left, right, baseline, horizontalCenter, and verticalCenter styles.



You allow the users to select more than one item at a time by holding down the Ctrl key while clicking on the items.
Which of the following properties will you use to accomplish the task?

  1. allowCtrlSelections
  2. allowMulipleSelections
  3. selectedlndices
  4. selectedltem

Answer(s): B

Explanation:

The allowMulipleSelections property allows the users to select more than one item at a time by holding down the Ctrl key while clicking on the items. Answer options C and D are incorrect. The selectedlndices property is an array of indices of the currently selected items and the selectedltem property is the numeric index of the currently selected item. Answer option A is incorrect. allowCtrlSelections is not a valid property.



Which of the following controls is used to allow users to select only one option at a time?

  1. PopUpButton
  2. RadoButton
  3. ToggleButtonBar
  4. LinkButton

Answer(s): B

Explanation:

RadioButton controls are used in groups of controls that represent mutually exclusive options. In radio buttons a user can select only one option at a time. The properties of

RadioButton controls are as follows: Answer option A is incorrect. The PopUpButton control is a subclass of the Button control. It inherits all the properties of the PopUpButton control, such as events, styles, and methods with the exception of the toggle property and the styles used for a selected button. It allows a user to create a Button with the help of two sub-buttons, a display button, and a pop-up button.
When a user clicks on the button, it presents a visual control as a pop-up window. It has the following characteristics:
· The property of pop-up specifies the pop-up controls. · The open() and close() methods help a user to open and close the pop-up automatically. · Both events open and close are dispatched when the pop-up control opens and closes. A user can use the popUpSkin and arrowButton Width style properties to define the PopUpButton controls appearance. Answer option C is incorrect. The ToggleButton Bar control is used to define a horizontal or vertical group of buttons, which maintain their selected or deselected state.
When a user selects a button in a ToggleButtonBar control, the button remains in the selected state until the user selects a different button.



Based on the following code, what does the XML_URL refer to? var myXML:XML = new XMLQ;
var XML_URL:String =
var myXMLURL:URLRequest = new URLRequest(XML_URL); var myLoader:URLLoader = new URLLoader(myXMLURL);
myLoader.addEventListener('complete', xmlLoaded);
function xmlLoaded(event:Event):void
{
myXML = XML(myLoader.data);
trace("Data Ioaded.')
}

  1. The XML file name
  2. The name of the dynamic text where the XML will be stored
  3. The XMLfile URL
  4. The SWF path

Answer(s): C

Explanation:

The XML_URL is a string variable, which includes the XML file of the loaded content path. The above code is used to call the external content stored in the XML format. Answer options D, A, and B are incorrect. These are not valid options that are referred by the XML_URL.



Toggle Button Bar control has the following default characteristics:
· Preferred size: It is the size wide enough to contain all buttons with their label text and icons.
· Control resizing rules: By default, ToggleButtonBar cannot be resized. However, a developer can specify percentage sizes if he wants the ToggleButtonBar to be resized based on the size of its parent container.
· selectedlndex: It determines which button will be selected when the control is created.
When its value is 0, it selects the leftmost button in the bar.
When its value is set to -1, it deselects all buttons in the bar.
· Padding: By default, ToggleButtonBar control uses 0 pixels for the left and right properties.
Answer option D is incorrect. The LinkButton control is a borderless Button control. Its contents are highlighted when a user moves the mouse over it. In its initial state, the LinkButton is transparent and shows only its label and icon.
When the cursor hovers over the LinkButton, its background color changes and the pointing hand mouse cursor appears at that moment.



You want to send the HTTP request with the help of a Button component.
Which of the following syntaxes should you use used?

  1. <mx: Button label = "Request" click = "service.sendo">
  2. <mx: Button label = "Request" click = service.sendo>
  3. <mx: Button label = "Request" service.sendo>
  4. <mx: Button label = "Request, service.sendo>

Answer(s): A

Explanation:

A user can send an HTTP request using the HTTPRequest objects send() method. For example, if a user wants to retrieve data when the application starts, he can call the send() method in the applications creationComplete event handler:
<mx:Application xmlns:mx=http://www.adobe.com/2006/mxml" creationComplete= "httpservice.sendQ'>

</mx:Application>
On the other hand, the user can also send the request upon a user event, such as to send data on a mouse click using the event handler of the Button component:
<mx:Button label=Request" click="service.sendQ/>
Answer options C, B, and D are incorrect. <mx: Button label = "Request" service.sendo>, <mx:
Button label = "Request" click = service.sendo>, and <mx: Button label = "Request, service.send()
> are invalid syntaxes to send the HTTP request with the help of a Button component.



Viewing Page 2 of 17



Share your comments for Adobe 9A0-082 exam with other users:

Anonymous 7/14/2023 3:17:00 AM

pls upload the questions
UNITED STATES


Mukesh 7/10/2023 4:14:00 PM

good questions
UNITED KINGDOM


Elie Abou Chrouch 12/11/2023 3:38:00 AM

question 182 - correct answer is d. ethernet frame length is 64 - 1518b. length of user data containing is that frame: 46 - 1500b.
Anonymous


Damien 9/23/2023 8:37:00 AM

i need this exam pls
Anonymous


Nani 9/10/2023 12:02:00 PM

its required for me, please make it enable to access. thanks
UNITED STATES


ethiopia 8/2/2023 2:18:00 AM

seems good..
ETHIOPIA


whoAreWeReally 12/19/2023 8:29:00 PM

took the test last week, i did have about 15 - 20 word for word from this site on the test. (only was able to cram 600 of the questions from this site so maybe more were there i didnt review) had 4 labs, bgp, lacp, vrf with tunnels and actually had to skip a lab due to time. lots of automation syntax questions.
EUROPEAN UNION


vs 9/2/2023 12:19:00 PM

no comments
Anonymous


john adenu 11/14/2023 11:02:00 AM

nice questions bring out the best in you.
Anonymous


Osman 11/21/2023 2:27:00 PM

really helpful
Anonymous


Edward 9/13/2023 5:27:00 PM

question #50 and question #81 are exactly the same questions, azure site recovery provides________for virtual machines. the first says that it is fault tolerance is the answer and second says disater recovery. from my research, it says it should be disaster recovery. can anybody explain to me why? thank you
CANADA


Monti 5/24/2023 11:14:00 PM

iam thankful for these exam dumps questions, i would not have passed without this exam dumps.
UNITED STATES


Anon 10/25/2023 10:48:00 PM

some of the answers seem to be inaccurate. q10 for example shouldnt it be an m custom column?
MALAYSIA


PeterPan 10/18/2023 10:22:00 AM

are the question real or fake?
Anonymous


CW 7/11/2023 3:19:00 PM

thank you for providing such assistance.
UNITED STATES


Mn8300 11/9/2023 8:53:00 AM

nice questions
Anonymous


Nico 4/23/2023 11:41:00 PM

my 3rd purcahse from this site. these exam dumps are helpful. very helpful.
ITALY


Chere 9/15/2023 4:21:00 AM

found it good
Anonymous


Thembelani 5/30/2023 2:47:00 AM

excellent material
Anonymous


vinesh phale 9/11/2023 2:51:00 AM

very helpfull
UNITED STATES


Bhagiii 11/4/2023 7:04:00 AM

well explained.
Anonymous


Rahul 8/8/2023 9:40:00 PM

i need the pdf, please.
CANADA


CW 7/11/2023 2:51:00 PM

a good source for exam preparation
UNITED STATES


Anchal 10/23/2023 4:01:00 PM

nice questions
INDIA


J Nunes 9/29/2023 8:19:00 AM

i need ielts general training audio guide questions
BRAZIL


Ananya 9/14/2023 5:16:00 AM

please make this content available
UNITED STATES


Swathi 6/4/2023 2:18:00 PM

content is good
Anonymous


Leo 7/29/2023 8:45:00 AM

latest dumps please
INDIA


Laolu 2/15/2023 11:04:00 PM

aside from pdf the test engine software is helpful. the interface is user-friendly and intuitive, making it easy to navigate and find the questions.
UNITED STATES


Zaynik 9/17/2023 5:36:00 AM

questions and options are correct, but the answers are wrong sometimes. so please check twice or refer some other platform for the right answer
Anonymous


Massam 6/11/2022 5:55:00 PM

90% of questions was there but i failed the exam, i marked the answers as per the guide but looks like they are not accurate , if not i would have passed the exam given that i saw about 45 of 50 questions from dump
Anonymous


Anonymous 12/27/2023 12:47:00 AM

answer to this question "what administrative safeguards should be implemented to protect the collected data while in use by manasa and her product management team? " it should be (c) for the following reasons: this administrative safeguard involves controlling access to collected data by ensuring that only individuals who need the data for their job responsibilities have access to it. this helps minimize the risk of unauthorized access and potential misuse of sensitive information. while other options such as (a) documenting data flows and (b) conducting a privacy impact assessment (pia) are important steps in data protection, implementing a "need to know" access policy directly addresses the issue of protecting data while in use by limiting access to those who require it for legitimate purposes. (d) is not directly related to safeguarding data during use; it focuses on data transfers and location.
INDIA


Japles 5/23/2023 9:46:00 PM

password lockout being the correct answer for question 37 does not make sense. it should be geofencing.
Anonymous


Faritha 8/10/2023 6:00:00 PM

for question 4, the righr answer is :recover automatically from failures
UNITED STATES