A component based on which of the following tags cannot be included inside the main mxml component?
<mx:TitleWindow/> 0%
<mx:Panel/> 0%
<mx:Application/> 0%
<mx:Canvas/> 0%
After invoking an HTTP service request, in which of the following properties are the returned results stored?
result 0%
lastResult 0%
value 0%
data 0%
By which of the following containers is constraint based layout supported?
Panel with vertical layout 0%
Canvas 0%
HBox 0%
VBox 0%
Containers can be of two types, which are:
Navigator and Box containers. 0%
Box and Layout containers. 0%
Layout and Navigator containers. 0%
During which phase of the event propagation is the event handler of the component which generated the event invoked?
Capturing Phase 0%
Bubbling Phase 0%
Target Phase 0%
None of the above 0%
Given a DataGrid which is placed inside a Panel(Height=300, width=500), how would you set the height and width of the datagrid so that it automatically changes (to fit in the panel) whenever the pa...
height = 300, width = 500 0.0%
height = 100%, width =100% 0.0%
height = 0, width = 0 100.0%
height = 150, width = 250 0.0%
Given a TextInput of id 'myText', what would be the output of the following code snippet? myText.height = 20; myText.width = 50; trace("ExplicitWidth:" + myText.explicitWidth+ ...
ExplicitWidth:50 ExplicitHeight:20 Width:50 Height:20 New ExplicitWidth:50 New ExplicitHeight:50 0.0%
ExplicitWidth:NaN ExplicitHeight:Nan Width:50 Height:20 New ExplicitWidth:NaN New ExplicitHeight:NaN 100.0%
ExplicitWidth:50 ExplicitHeight:20 Width:50 Height:20 New ExplicitWidth:NaN New ExplicitHeight:NaN 0.0%
None of the above 0.0%
Given below is the declaration of a Wipe-Effect. What would be the duration of the wipe effect? <mx:WipeLeft id="myWipeEffect" duration="2000"/>
2000 seconds 100.0%
2 seconds 0.0%
200 milliseconds 0.0%
20 milliseconds 0.0%
Given the following CSS style declaration, which type of style selector is being used? <mx:Style> Button{ font-size:30pt; color:#FFFFFF; } </mx:Style>
Global selector 100.0%
Class selector 0.0%
Type selector 0.0%
None of the above 0.0%
Given the following CSS style declarations, what will be the font color and font size of a label in the UI when the application is run? <mx:Style> global{ font-size:10p...
Font color= #00FF00 and Font size=10 0.0%
Font color= #FFFFFF and Font size=10 0.0%
Font color= #00FF00 and Font size=30 0.0%
Font color= #FFFFFF and Font size=30 100.0%
Given the following declaration of a CurrencyFormatter, what would the trace statement print? <mx:CurrencyFormatter id="myCurrFormatter" currencySymbol="Rs." precision="1" rounding="nearest"/> tra...
Rs.50,750.75 0%
Rs.50750.8 0%
Rs.50,750.8 0%
Error: 'Rs.' is not a valid currency symbol. 0%
How many Application tags can be included in an mxml file?
0 0%
1 0%
2 0%
Unlimited 0%
How many components can an ItemEditor contain?
0 0%
1 0%
2 0%
Unlimited 0%
How many root nodes can an XML(E4X) object have?
1 0%
1 or more 0%
0 0%
0 or more 0%
Identify the two components used in the above image:
Grid and Check Box 0%
Grid and Radio Button 0%
DataGrid and Radio Button 0%
DataGrid and Check box 0%
In the MVC design pattern, which tier do data models of a flex application represent?
Model 0%
View 0%
Controller 0%
The applicationComplete event of a container occurs before the creationComplete event?
The default order in which the event propagation phases occur is______.
Capturing Phase, Bubbling Phase and Target Phase 0%
Target Phase, Capturing Phase and Bubbling Phase 0%
Bubbling Phase, Target Phase and Capturing Phase 0%
Capturing Phase, Target Phase and Bubbling Phase 0%
The dispatchEvent() method of the EventDispatcher class is used to______.
dispatch an event 0.0%
register an event listener 100.0%
de-register an event listener 0.0%
create a new event object 0.0%
The priority of the busy Cursor in flex is ______.
low 100.0%
medium 0.0%
high 0.0%
What does the pattern letter 'M' denote in the format string of a DateFormatter?
Seconds 0.0%
Minutes 100.0%
Day 0.0%
Month 0.0%
What happens when we add an item(at runtime) to an array collection which is bound to the dataProvider of a Datagrid?
The added item automatically appears in the UI(datagrid) subject to the fact that we have refreshed the array collection after adding the item. 0.0%
The added item automatically appears in the UI(datagrid) even if we don't refresh the array collection. 0.0%
No change occurs in the UI. 100.0%
No change occurs in the UI until we refresh the datagrid. 0.0%
What is the layout direction of a VBox?
Vertical 0%
Horizontal 0%
Diagonal 0%
A VBox does not have a layout direction. It follows the absolute positioning of components. 0%
What is the maximum no. of <mx:Script> blocks that can be defined in an mxml file?
0 0.0%
1 0.0%
2 100.0%
Unlimited 0.0%
What is the maximum no. of characters allowed for the label text of a link button?
128 0%
512 0%
1024 0%
Unlimited 0%
What is the most efficient way to validate that alpha-numeric data is in the correct format?
Use the RegExpValidator class. 0%
Use the StringValidator class. 0%
Use the NumberValidator class. 0%
Create a custom validator to loop over and validate each character. 0%
When a flex library project is compiled, what type of file is generated?
.class 0%
.swf 0%
.swc 0%
.swf or .swc 0%
When a new custom component based on VBox layout is created, it implies that:
the VBox class was instantiated. 0%
the VBox class was declared but not instantiated. 0%
the VBox class was extended. 0%
None of the above 0%
When a Text control is declared inside the Application tags using the mxml tags, it implies that:
the Text class was instantiated. 0%
the Text class was declared but not instantiated. 0%
the Text class was extended. 0%
None of the above 0%
When creating a Consumer object, which event is used to get a handle on the data that is received?
result 0%
lastResult 0%
message 0%
data 0%
When creating a new Event object, which of the following attributes must be defined?
type 0%
id 0%
bubbles 0%
cancellable 0%
When the repeat count of an effect is set to 0, it implies that the effect will repeat______.
0 times 0%
1 time 0%
10 times 0%
Unlimited times 0%
Which interface needs to be implemented in order to supply our own uid property in a custom class?
IUniqueIdentifier 0%
UniqueIdentifier 0%
IUID 0%
UID 0%
Which method of a Validator would you call to programmatically trigger the validation?
validate() 0%
test() 0%
check() 0%
verify() 0%
Which method of changing the appearance of a Flex application requires the use of 3rd-party tools like Adobe Photoshop or Adobe Flash 8?
styles API 0%
graphical skinning 0%
programmatic skinning 0%
cascading style sheets 0%
Which method of the ModuleLoader API is used to load a module?
load() 0.0%
loadModule() 100.0%
get() 0.0%
getModule() 0.0%
Which of the following attributes of the Event class is defined in all types of events in flex?
result 0%
type 0%
id 0%
fault 0%
Which of the following attributes of the Event Class stores the id of the component which generated the event?
type 0%
id 0%
currentTarget 0%
target 0%
Which of the following can be used to access the server side data from a flex application?
HTTPService component 0%
WebService component 0%
RemoteObject component 0%
All of the above 0%
Which of the following components would be used to show the five components in the form of an organized list in the UI(as shown in the above image)?
TileList 0%
Hbox 0%
Canvas 0%
Panel 0%
Which of the following components would you use to interact with web services that define their interfaces in a WSDL document which is available as a URL?
HTTPService component 0%
WebService component 0%
RemoteObject component 0%
All of the above 0%
Which of the following containers extends the Viewstack class to provide navigation between its child components?
TabNavigator 0%
Accordion 0%
TabBar 0%
ButtonBar 0%
Which of the following controls cannot be used as an Item Renderers?
Button 0%
CheckBox 0%
Numeric stepper 0%
All of the above can be used 0%
Which of the following does not accept Viewstack as a dataprovider?
TabNavigator 0%
TabBar 0%
ButtonBar 0%
ToggleButtonBar 0%
Which of the following does not extend the Box container?
VBox 0%
HBox 0%
Canvas 0%
All of the above extend the Box container. 0%
Which of the following events is dispatched when a component and all its children have been created, but the component size has not been determined?
pre-initialize 0%
initialize 0%
creationComplete 0%
addedToStage 0%
Which of the following Flex UI components is not a Control?
Button 0%
Text 0%
Canvas 0%
List 0%
Which of the following is not a data-driven control?
Grid 0%
DataGrid 0%
List 0%
Tree 0%
Which of the following is not a type of Item Renderers?
inline 0%
dropin 0%
dropout 0%
component 0%
Which of the following is not an advantage of using Modules?
Smaller initial download size of the SWF file 0%
Shorter loading time of applications 0%
They can be run independently. 0%
Better encapsulation of related aspects of an application 0%
Which of the following is the correct syntax for declaring the label function of a datagrid?
private function myLabelFunction(obj:Object):void 0%
private function myLabelFunction(obj:Object,dg:DataGridColumn):void 0%
private function myLabelFunction(obj:Object, dg:DataGridColumn):String 0%
private function myLabelFunction(obj:Object):String 0%
Which of the following is the correct syntax to show the busy cursor in the UI using the CursorManager class?
CursorManager.showBusyCursor(); 0%
CursorManager.setBusyCursor(); 0%
CursorManager.setCursor("busy"); 0%
CursorManager.setCursor(); 0%
Which of the following is the correct way of assigning the given style to a button control? <mx:Style> .myButtonStyle{ font-size:30pt; color:#FFFFFF; ...
<mx:Button styleName="myButtonStyle" /> 0%
<mx:Button styleName=".myButtonStyle" /> 0%
<mx:Button styleName=myButtonStyle /> 0%
<mx:Button styleName=.myButtonStyle /> 0%
Which of the following is the correct way of setting a style property in a CSS file?
fontsize=12; 0%
font-size=12; 0%
fontSize:12; 0%
Which of the following is the correct way of setting the font color of a label to white(#FFFFFF) using the set style method?
setStyle("color","#FFFFFF"); 100.0%
setStyle("color",#FFFFFF); 0.0%
setStyle(#FFFFFF); 0.0%
setStyle(color,#FFFFFF); 0.0%
Which of the following is the root tag of a Flex application?
<mx:Root> 0%
<mx:Module> 0%
<mx:Panel> 0%
<mx:Application> 0%
Which of the following is used to sort the items of an array collection?
view cursor 0%
label function 0%
iterator 0%
sort function 0%
Which of the following methods of the arrayCollection class can be used to add an item in the arrayCollection?
addItem() 0%
addItemAt() 0%
push() 0%
pushAt() 0%
Which of the following methods of the Event class is used to stop the bubbling of an event to its parent containers?
terminate(); 0%
stopPropagation(); 0%
stop(); 0%
endPropagation(); 0%
Which of the following operators can be used for data binding between the properties of a component?
Which of the following statements about a Label control is true?
A Label control can take focus. 0%
A Label control's background color can be set to white. 0%
Text in a Label control can be formatted using styling or HTML text. 0%
A label control's text can be changed by the user. 0%
Which of the following statements about Data binding is not correct?
Data binding is the process of tying the data in one object to another object. 0%
Data binding requires a source property, a destination property, and a triggering event. 0%
More than one source property can be bound to a destination property. 0%
All of the above statements are correct. 0%
Which of the following statements about the view cursor is true?
The insert() function inserts an item at the current cursor location. 0%
The insert() function inserts an item after the current cursor location. 0%
The insert() function inserts an item at the end of the array collection. 0%
The insert() function inserts an item at the 0th index of the array collection. 0%
Which of the following statements is incorrect?
Modules are used to create loosely coupled applications. 0%
Modules can be loaded using the ModuleLoader API. 0%
Modules cannot load other modules. 0%
Modules can access data in its parent application. 0%
Which of the following statements is true about the EmailValidator?
It is used to check if the input string has exactly 1 '@' symbol and exactly 1 period. 0%
It is used to check if the input string has exactly 1 '@' symbol and at least one period after the '@' symbol. 0%
It is used to check if the input string has 1 or more '@' symbols and at least one period after the '@' symbol. 0%
It is used to check if the input string has 1 '@' symbol and exactly 1 period after the '@' symbol. 0%
Which of the following statements most appropriately describes the 'behavior' of a flex UI component?
The behaviour of a component enables us to add motion and sound to our component. 0%
The behaviour of a component enables us to add sound and animation to our component. 0%
The behaviour of a component enables us to add only motion to our component. 0%
The behaviour of a component enables us to add motion, sound and animation to our component. 0%
Which of the following syntax would be used to set the current state to the base state?
currentState=base 0%
currentState='base' 0%
currentState='' 0%
currentState='*' 0%
Which of the following text controls does not allow the user to input text?
Text 0%
TextArea 0%
TextInput 0%
RichTextEditor 0%
Which of the following values of from and to state would create the same transition to and from every state in the application?
<mx:Transition fromState="" toState=""/> 0%
<mx:Transition fromState="*" toState=""/> 0%
<mx:Transition fromState="" toState="*"/> 0%
<mx:Transition fromState="*" toState="*"/> 0%
Which properties of the datagrid would we need to set in order to achieve the positioning shown in the image above:
verticalAlign 0%
horizontalAlign 0%
bottom 0%
paddingBottom 0%
left 0%
paddingLeft 0%
Which protocol supports the use of server-pushed messages with the Messaging and Data Management services in Flex?
HTTP 0%
RTMP 0%
TCP 0%
SMTP 0%
Which statement about CSS properties is true?
Spaces are allowed in property names. 0%
All CSS properties are available in flex. 0%
Components cannot be styled using CSS. 0%
Class selectors can be applied to a component using the styleName property. 0%
Which term best describes a server-side code that interacts directly with the object or service?
adapter 0%
proxy 0%
channel 0%
destination 0%
Which type of a value does the Effect.targets property accept?
Array 0%
String 0%
Number 0%
XML 0%
Which type of Style declaration has the highest precedence?
Type selector 0%
Class selector 0%
Global 0%
Inline 0%
While adding child components through view states, which of the following is not a valid value for the 'position' property?
first 0%
firstChild 0%
before 0%
lastChild 0%
With which of the following components can Item Renderers not be used?
Datagrid 0.0%
Canvas 0.0%
Tree 100.0%
TileList 0.0%
You want to display a check box control on every row of a datagrid and have both render and change the value of a Boolean property of each data item named isSelected. Which is the correct syntax fo...
<mx:DataGridColumn dataField="isSelected" itemRenderer="mx.controls.CheckBox" editorDataField="value"/> 0.0%
<mx:DataGridColumn itemRenderer="mx.controls.CheckBox" editorDataField="value" rendererIsEditor="true"/> 0.0%
<mx:DataGridColumn dataField="isSelected" editorDataField="value" rendererIsEditor="true"/> 100.0%
<mx:DataGridColumn dataField="isSelected" itemRenderer="mx.controls.CheckBox" editorDataField="value" rendererIsEditor="true"/> 0.0%