1.
Which must be true before using the Bone tool and inverse kinematics?
2.
Which Date() constructor returns a Date object containing the current date and time, in local time based on your time zone?
3.
Which property of the MovieClip class is modified when an object is rotated with the Free Transform tool?

 
4.
You want to create and display an empty TextField in ActionScript 3.0.
Which statement should you use?
5.
Which statement should you use to create an instance of the Date class?
6.
Given the following ActionScript statement:
var now:Date = new Date();
Which is the datatype?
7.
Which statement about an interface is true?
8.
Which ActionScript keyword indicates that a class inherits from another class?
9.
Which ActionScript keyword prevents a class property from being inherited by ANY subclasses?
10.
Given the code below, which statement best describes the relationship between Class1 and Class2?
package
\{
public class Class1 extends Class2
\{
}
}