1.
Which UIComponent Event is dispatched when the component has finished its construction, property processing, measuring, layout and drawing?
2.
You are creating a method named myFunction, that is designed to be used with the filterFunction property of an ArrayCollection. Which method signature should you use?
3.
Given this custom component definition:
What is the relationship between the component and the ActionScript VBox class?
4.
You have created a Button inside a VBox container, which is a child of the application. The Application start tag has this click event handler:

What is the value for the currentTarget property of the event object?
5.
Which line of code correctly calls a changeHandler function when the text in a TextInput component is changed?
6.
You want to handle the click event of a Button control. The id property of the Button is set to myButton. You are dispatching the event object to a custom handler method with this call to the addEventListener() method:
myButton.addEventListener(MouseEvent.CLICK, clickHandler);
You want to be able to determine whether the user held down the Alt, Shift or Ctrl keys when clicking the
Button. Which is the correct signature of the clickHandler()method?
7.
Which line of code correctly binds the text property of a label to the selectedValue of a RadioButtonGroup with an id of cardType?
8.
What is created when you write the following statement? var myBirthday:Date = new Date();
9.
Which IViewCursor interface method moves the cursor to a bookmark?
10.
You are sorting or filtering a collection view Which method should you use to update any control or container bound to the data?