Articles Comments

Flex Certification » Flex Certification, Flex Questions » Flex Certifications Questions

Flex Certifications Questions

It is difficult to find flex certification questions on the internet. The Certification is relatively new so right now we do not have the pool of questions which we can use for preparation. Once I get some more knowledge in this area I will try to gather the Flex Certification  questions and put them together

You want to apply the Overlay blend to an image in your Flex application.
Which is the correct syntax?

A. <mx:Image overlay=”true” />
B. <mx:Image blend=”overlay” />
C. <mx:Image blendMode=”overlay” />
D. <mx:Image filters=”{overlay}” />

Correct answer: C

Which line of code correctly binds the text property of a Label to the selectedValue of a
RadioButtonGroup with an id of cardType?

A. <mx:Label text=cardType.selectedValue
B. <mx:Label text=”cardType.selectedValue” />
C. <mx:Label text=”{cardType.selectedValue}” />
D. <mx:Label text=”[cardType.selectedValue]” />

Correct answer: C

Which two properties are declared in the flash.events.Event class and are declared in all event
objects? (Choose two.)

A. id
B. type
C. target
D. value
E. relatedObject

Correct answer: B, C

You have a custom component named PopUpWindow that inherits from TitleWindow.
Which syntax is used to create a class that extends from TitleWindow?

A. public class PopUpWindow extends TitleWindow
B. public class PopUpWindow becomes TitleWindow
C. public class PopUpWindow inherits TitleWindow
D. public class PopUpWindow implements TitleWindow
Correct answer: A

You have declared the following XML instance:
var myBooks:XML =
<books>
<book name=”Flex 3 with AIR” />
</books>

How do you access the name attribute of the myBooks instance by using E4X?
A. myBooks.book.@name;
B. myBooks.books.book.@name;
C. myBooks.book.attributes.name;
D. myBooks.books.book.attributes.name;
Correct answer: A

Which method of the SQLConnection class allows an AIR application to connect to a local
database?

A. open()
B. begin()
C. create()
D. connect()
Correct answer: A

Which HTTPService method call will invoke a service request?
A. load()
B. send()
C. initialized()
D. addEventListener()

Correct answer: B

Which method of the NativeDragManager class will approve the current drag event?
A. doDrag()
B. dragDrop()
C. doDragDrop()
D. acceptDragDrop()

Correct answer: D

Which statement is true about installing AIR applications?
A. They can only be installed from the desktop.
B. They can only be installed from a web browser.
C. They must be installed using an SWF (Flash) file.
D. They can be installed from a web browser or the desktop.

Correct answer: D

Written by admin

Filed under: Flex Certification, Flex Questions · Tags: ,

Leave a Reply

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>