This section includes 7 InterviewSolutions, each offering curated multiple-choice questions to sharpen your Current Affairs knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
What Is A Metadata Tag? |
|
Answer» These TAGS provide INFORMATION to FLEX compiler regarding the usage of our COMPONENT. Examples are Bindable, EVENT, DefaultProperty, Inspectable etc. These tags provide information to Flex compiler regarding the usage of our component. Examples are Bindable, Event, DefaultProperty, Inspectable etc. |
|
| 2. |
What Is A Filter Function? |
|
Answer» We USE this function to limit the data view in the collection to a SUBSET of SOURCE data object. The function must TAKE a single Object parameter, which corresponds to a collection item, and must return a BOOLEAN value specifying whether to include the item in the view. We use this function to limit the data view in the collection to a subset of source data object. The function must take a single Object parameter, which corresponds to a collection item, and must return a Boolean value specifying whether to include the item in the view. |
|
| 3. |
What Is A View Cursor? |
|
Answer» A CURSOR is a position INDICATOR; it POINTS to a particular item in the collection. We use view cursor to traverse items in a collection’s data view and modify the data in collection. A view cursor INCLUDES following methods:
A cursor is a position indicator; it points to a particular item in the collection. We use view cursor to traverse items in a collection’s data view and modify the data in collection. A view cursor includes following methods: |
|
| 4. |
What Events Are Used By The Collections? |
|
Answer» Collections dispatch CollectionEvent, PropertyChangeEvent and FlexEvent OBJECTS.
Collections dispatch CollectionEvent, PropertyChangeEvent and FlexEvent objects. |
|
| 5. |
What Is The Use Of Disableautoupdate Method? |
|
Answer» This METHOD prevents the events that represent changes to the underlying DATA from being broadcasted by the view. It also prevents collection from being updated. This method is useful where multiple items in collection are being edited at once. By disabling the auto update the changes are RECEIVED as a batch instead of multiple events. Also in a DataGrid this method prevents update to the collection while a specific item is SELECTED. When item is no longer selected the DataGrid controls calls enableAutoUpdate() method. This method prevents the events that represent changes to the underlying data from being broadcasted by the view. It also prevents collection from being updated. This method is useful where multiple items in collection are being edited at once. By disabling the auto update the changes are received as a batch instead of multiple events. Also in a DataGrid this method prevents update to the collection while a specific item is selected. When item is no longer selected the DataGrid controls calls enableAutoUpdate() method. |
|