1.
Which term describes the path on which messages travel?
2.
Which is NOT a client-side RPC component?
3.
Which term describes an endpoint for a message (data) where the message will be acted upon?
4.
You want to track information about an object that is manipulated by the Data Management Service. Which class should you use?

 
5.
You are using ActionScript 3.0. You want a property to be visible only in the class that defines it. You do NOT want this property to be inherited by any subclasses. Which access modifer should you use?
6.
Which statement declares a valid constructor for the Person class?
7.
Which IViewCursor interface method moves the cursor to a bookmark?
8.
You want to use data binding with a custom property of a custom component. What must you do?
9.
Which line of code correctly binds the text property of a label to the selectedValue of a RadioButtonGroup with an id of cardType?
10.
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?