• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/104

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

104 Cards in this Set

  • Front
  • Back
'as' is a:Reserved wordsyntactic keywordOrfuture reserved word 
 Reserved word
'each' is a:Reserved wordsyntactic keywordOrfuture reserved word 
 syntactic keyword
'native' is a:Reserved wordsyntactic keywordOrfuture reserved word 
 syntactic keyword
'abstract' is a:Reserved wordsyntactic keywordOrfuture reserved word 
 Future Reserved Word
'finally' is a:Reserved wordsyntactic keywordOrfuture reserved word 
 Reserved word
'final' is a: Reserved word syntactic keyword Or future reserved word 
 Syntactic Keyword
'cast' is a: Reserved word syntactic keyword Or future reserved word 
 Future Reserved Word
'intrinsic' is a: Reserved word syntactic keyword Or future reserved word 
 Future Reserved Word
'transient' is a: Reserved word syntactic keyword Or future reserved word 
 Future Reserved Word
'namespace' is a: Reserved word syntactic keyword Or future reserved word 
 Syntactic Keyword
'continue' is a: Reserved word syntactic keyword Or future reserved word 
 Reserved word
'to' is a: Reserved word syntactic keyword Or future reserved word 
 Reserved word
'with' is a: Reserved word syntactic keyword Or future reserved word 
 Reserved word
'delete' is a: Reserved word syntactic keyword Or future reserved word 
 Reserved word
'boolean' is a: Reserved word syntactic keyword Or future reserved word 
 future reserved word
'static' is a: Reserved word syntactic keyword Or future reserved word 
 syntactic keyword
'throws' is a: Reserved word syntactic keyword Or future reserved word 
 future reserved word
create connect to, and define a local database-the identifier for the last inserted row is found in  
 lastInsertRowId
for LiveCycle Data Services deploy custom components in the ActionScript source path or 
 WEB-INF/flex/user_classes.
REST style API is connected to using the _______ object 
 HTTPService
To write a custom serialization scheme use the ______ interface.  
 flash.utiles.IExternalizable
HTTPService: Access the data by using the _________________ property, or in a result event by using the ResultEvent.result property. 
 HTTPService.lastResult
WebService: The WebService component creates an Operation object for each operation supported by the associated web service. Access the data by using the __________ property for the specific operation, or in a result event by using the ResultEvent.result property. 
 Operation.lastResult
There are two ways of handling service results 
 Processing results in an event handlerandBinding a result to other objects
the main LCDS data services config file that includes the other files 
 services-config.xml
where the Messaging service is configured. The most common tasks that you perform when configuring the Messaging Service are defining message destinations and applying security to message destinations. 
 messaging-config.xml
which is an invalid LCDS config file?data-management-config.xmlmessages-config.xmlservices-config.xmlremoting-config.xml 
 messages-config.xml
Which is an invalid DataService Method?getItem()releaseItem()getItemAt()release() 
 getItemAt()
which is a valid LCDS config file?service-config.xmldata-management-config.xmlmessages-config.xmlmessage-config.xml 
 data-management-config.xml
A CSS Type SelectorA) applies to all instances of a component typeB) is defined as a label preceded by a period (.mystyle) creates a new named style that can be applied using the 'styleName' property 
 A
A CSS Class Selector A) applies to all instances of a component type B) is defined as a label preceded by a period (.mystyle) creates a new named style that can be applied using the 'styleName'  
 B
which is an invalid filter:ConvolutionFilterShaderFilterBitmapFilterShadowFilter 
 ShadowFilter
which is a valid filterGradientGlowFilter ShadowFilterShadeFilterDisplacementFilter 
 GradientGlowFilter
which is an invalid BlendModeSOFTLIGHTHARDLIGHT DIFFERENCE LIGHTEN  
 SOFTLIGHT
This BlendMode is Commonly used to create shading effects. 
 HARDLIGHT
This BlendMode is Commonly used to create more vibrant colors 
 DIFFERENCE
This BlendMode is Commonly used to create shadows and depth effects 
 MULTIPLY
True or FalseEmbedded fonts are required for fade and rotate effects 
 TRUE
True or Falseembedded fonts are required for zoom.  
 FALSE - non embedded fonts scale between whole point sizes
Which property is NOT valid for NativeDragOptionsallowCopyallowAddallowLinkallowMove 
 allowAdd
True or FalseAn image must be loaded before it can be passed to the doDrag() method, otherwise it will be blank 
 TRUE
Which of the following ContextMenuEvent constants is invalid?MENU_ITEM_HOVERMENU_ITEM_SELECTMENU_ITEM_ROLLOUTMENU_SELECT 
 MENU_ITEM_HOVERandMENU_ITEM_ROLLOUT
Name the 3 Window APIs 
 NativeWindow class - Actionscript-orientedmx:WindowedApplication - Flex Framework (wraps the NativeWindow class)mx:Window - Flex Framework (wraps the NativeWindow class)
______ use a slimmer version of the system chrome and do not appear on the Windows task bar and the Mac OS-X  
 Utility windows
_________ have no chrome and do not appear on the Windows task bar or the Mac OS X window menu 
 Lightweight windows
NativeWindowType defines constants for the window systemChrome, which is invalid:NativeWindowSystemChrome.NONENativeWindowSystemChrome.STANDARDNativeWindowSystemChrome.LIGHTWEIGHT 
 NativeWindowSystemChrome.LIGHTWEIGHT
_________ Requires the 'NativeWindow' class with systemChrome set to 'none'. transparent and non-rectangular windows possible. 
 Custom Chrome
For ______________ transparent MUST be 'false' and NativeWindowType MUST be 'NORMAL'/'UTILITY' 
 System Chrome
_____________ Requires either flex 'WindowedApplication' or 'Window' components with systemChrome set to 'none' 
 Flex Chrome
the _____ class attribute Allows properties to be added to instances at run time 
 dynamic
the _____ class attribute means the class Must not be extended by another class. 
 final
the ____ class attribute means the class is Visible to references inside the current package 
 internal ( default )
the _____ class attribute means the class is Visible to references everywhere 
 public
The ArrayCollection class executes filtering throught its ________ property. 
 filterFunction
call the ArrayCollectionobject’s _______method to cause the filtering to happen 
 refresh()
A ____________lets you filter data in an XML object, accomplishing tasks similar to the WHERE clause in an SQL statement. 
 predicate expression. The predicate expression itself is an ActionScript comparison expression wrapped in parentheses. You appended the predicate tothe part of the E4X expression that indicates what data you want to return, separated with a dot operator.
To send a message from a Producer component to a destination, you create an _________ object and call the Producer components _______ method 
 mx.messaging.messages.AsyncMessagesend()
To create a new database file, you first create a/an ________ instance 
 SQLConnection
You create an SQLConnection ______ method to open it insynchronous execution mode 
 open()
You can an SQLConnection ______ method to open it in asynchronous execution mode 
 openAsync()
Which of the following is not true when Working with file upload ?A) The FileReference class lets you add the ability to upload and download files between a client and a serverB) Users are prompted to select a file to upload or a location for download from a dialog box (such as the Open dialog box on the Windows operating system).C) Each FileReference object that you create with ActionScript refers to a single file on the user's hard diskD) The object has no properties containing information about the file's size, type, name, creation date, or modification date. 
 D
The file URL scheme to point to a file is1. app-file:/2. app-file://3. file:/4. file://5. file:/// 
 file:///
System chromeChoose _______ to provide your own chrome for a window (or to use Flex chrome) 
 none
The component that is the source of the dragged item is typically designated as the drag initiator and dispatches _________ and __________ events. 
 nativeDragStartnativeDragComplete
An Adobe AIR application starts a drag operation by calling the __________________ method in response to a mouseDown or mouseMove event. 
 NativeDragManager.doDrag()
Dragging: While holding down the mouse button, the user moves the mouse cursor to another component, application,or to the desktop. AIR optionally displays a proxy image during the drag. As long as the drag is underway, the initiator object dispatches ________________ events. 
 nativeDragUpdate
When the user moves the mouse over a possible drop target in an AIR application, the drop target dispatches a event. 
 nativeDragEnter
The event handler can inspect the event object to determine whether the dragged data is available in a format that the target accepts and, if so, let the user drop the data onto it by calling the ____________________method. 
 NativeDragManager.acceptDragDrop()
As long as the drag gesture remains over an interactive object, that object dispatches __________ events. 
 nativeDragOver
When the drag gesture leaves the interactive object, it dispatches a _______________ event. 
 nativeDragExit`
Drop: The user releases the mouse over an eligible drop target. If the target is an AIR application or component, then the component dispatches a _____________ event. 
 nativeDragDrop
The default application installer provides the user with security-related information. AIR displays the publisher name during installation when the AIR application has been signed with a certificate that is trusted, or which chains to a certificate that is trusted on the installation computer. Otherwise the publisher name is displayed as "_______" 
 unknown
A user can remove an AIR application:•On Windows: Using the Add/Remove Programs panel to remove the application.• On Mac OS: ___________________________________ 
 Deleting the application file from the install location.
True or FalseRemoving AIR applications reverts changes the AIR application has made to files outside the application directory. 
 false
True or FalseRemoving an AIR application removes all files in the application directory 
 True
Files installed with the application are in a directory known as the ___________ directory, and as such, they are, by default, placed in a security sandbox — known as the __________ — that has access to all AIR APIs. 
 applicationapplication sandbox
True or FalseFiles that are not in the application sandbox have security restrictions like those specified by the Flash Player security model. 
 True
True or FalseSWF files running through Flash Player in a browser cannot directly interact with files already on a user's computer. 
 True
true or false it is best practice to use a collection as the data provider when the data can change at run time 
 true
To display DataTips, set the showDataTips property of a List control to ______ 
 true
on list controlsyou can use the ____________ and _____________ properties to determine what is displayed in the DataTip. 
 dataTipFielddataTipFunction
You can use the ________ property in combination with the _________ property to wrap text to multiple lines when it exceeds the width of a List row.  
 wordWrapvariableRowHeight
You can use the _______________ style property to specify an Array that defines the color of each row in the List control. The Array must contain two or more colors. After using all the entries in the Array, the List control repeats the color scheme. 
  alternatingItemColors
true or false top and bottom styles override verticalCenter style 
 false
Do not specify a top or bottom style with a verticalCenter style
the verticalCenter value overrides the other properties.
true or falsethe horizontalCenter value overrides left or right styles 
 true
Do not specify a top or bottom style with a verticalCenter style
the verticalCenter value overrides the other properties. Similarly, do not specify a left or right style with a horizontalCenter style.
If you specify left and right constraints, the resulting constraint-based width overrides any width set by a width or percentWidth property. 
 true
A RadioButton group is composed of two or more RadioButton controls with the same grouporgroupName property 
 groupNamegroupName Specifies the name of the group to which this RadioButton control belongs, or specifies the value of the id property of a RadioButtonGroup control if this RadioButton is part of a group defined by a RadioButtonGroup control.group is The RadioButtonGroup object to which this RadioButton belongs.
Which form of system chrome is invalid choose two:NativeWindowSystemChrome.NORMALNativeWindowSystemChrome.NONENativeWindowSystemChrome.STANDARDNativeWindowSystemChrome..LIGHTWEIGHT 
 NativeWindowSystemChrome.NORMALNativeWindowSystemChrome..LIGHTWEIGHT'NONE' and STANDARD' are the only two valid system chromes
which window type is invalid. choose one:NativeWindowType.NORMALNativeWindowType.UTILITYNativeWindowType.STANDARDNativeWindowType.LIGHTWEIGHT 
 STANDARDREMEMBER: NORMAL applies to a window type. STANDARD refers to system chrome.
Which URL scheme would you use to specify the path to the application store directory? file:///c:/AIR Test/test.txt app-store:/settings/prefs.xml app-data:/images app-storage:/settings/prefs.xml  
 app-storage:/settings/prefs.xml
which URL scheme would you use to specify a path relative to the root of the file system? file:///c:/AIR Test/test.txt app-store:/settings/prefs.xml app:/images app-storage:/settings/prefs.xml  
 file:///c:/AIR Test/test.txt
which URL scheme would you use to specify a path relative to the root directory of the installed applicationfile:///c:/AIR Test/test.txt app-store:/settings/prefs.xml app:/images app-storage:/settings/prefs.xml  
 app:/images
true or false the root tag of an MXML component can contain an id property 
 False the root tag of an MXML component CANNOT contain an id property
true or false You cannot define a type selector in an MXML component. 
 true If you define a type selector, a compiler error occurs.
A constant can only be assigned once, and it must occur either in the ___________, or in the ____________. 
 declarationclass constructor
Cursorsto return to a bookmarked position use the ____ method with a _____________ parameter 
 seek()CursorBookmark
_______ requires CONST variables to be set on initialiation 
 strict mode
You would call the ______method of the UIComponent class directly if you needed to update the layout of your custom component and redraw it onscreen.  
 validateNow()
a components width set by a width or percentWidth property overrides the width specified by left and right constraints 
 false if you specify both left and right constraints, the calculated constraint-based width overrides the width set by a width or percentWidth property.
The ________ and __________ methods move the cursor forward and backward by one item 
 moveNext() movePrevious()
CursorsUse the __________ and ___________ properties to check whether you've reached the bounds of the view. 
 beforeFirstafterLast
The ______, _________, and _________ methods move the cursor to an item that matches the parameter. 
 findAny() findFirst() findLast()