Identify the letter of the choice that best matches the phrase or definition.
a. keyframe
b. motion path
c. movie clip
d. easing
e. motion tween
f. ActionScript
g. frame-by-frame
h. playhead
i. layer masks
j. tween
1. Symbols used for creating smaller animations that play independently of the main animation
2. Used for ensuring that elements are only visible on desirable areas of the stage
3. Type of animation created by manually changing the contents of the stage over a span of consecutive frames
4. Defines a point during the animation where something has changed from the previous frame
5. Moves across the frames as the animation plays
6. An auto-created animation
7. Used to stop a looping movie at a certain frame
8. Used to animate symbols by adding movement
9. Includes points to indicate how a symbol will move across the stage as it is animated
10. Going slowly
1. C movie clip
2. I layer masks
3. G frame-by-frame
4. A keyframe
5. H playhead
6. J tween
7. F ActionScript
8. E motion tween
9. B motion path
10. D easing
You might also like to view...
The ____ process adds new pixels to a photo to match those already there.
a. editing b. resampling c. pixeling d. formatting
The merge sort algorithm:
a. Can only be used on vectors of even length. b. Works by reducing vectors down to the base case of a two-element vector. c. Works by merging two sorted vectors into one larger sorted vector. d. Cannot be implemented recursively.
Explain the role of the CIO in the incident management program.
What will be an ideal response?
Analyze the following code.
``` Number[] numberArray = new Integer[2]; numberArray[0] = new Double(1.5);``` Which of the following statements is correct? a. You cannot use Number as a data type since it is an abstract class. b. Since each element of numberArray is of the Number type, you cannot assign an Integer object to it. c. Since each element of numberArray is of the Number type, you cannot assign a Double object to it. d. At runtime, new Integer[2] is assigned to numberArray. This makes each element of numberArray an Integer object. So you cannot assign a Double object to it.