Born Today: Jessi Colter (1947)

Trivix.com

Did you know that some toothpastes contain antifreeze.

ActionScript programming language quiz

Are you a Flash/ActionScript master? Test your skills here..

Posted: May 14, 2010
Tags: ,   ,  
Average Rating:
0.00/5 Stars
(0 votes)
Times Played: This game has been played 46 times
Bookmark and Share
Question#1

What's the difference between a MovieClip and a Sprite in ActionScript 3?

  • Only MovieClips have a "graphics" property to draw on using the drawing API
  • A MovieClip has a timeline, while a Sprite does not
  • Sprite instances cannot be animated
  • A Sprite instance does not dispatch events
Question#2

Which of the following ActionScript 3 classes is not found in the "flash.geom" package?

  • ColorTransform
  • Point
  • Matrix
  • JointStyle
Question#3

Which string is not a valid StageScaleMode constant in ActionScript 3?

  • SCALE_TO_FIT
  • NO_BORDER
  • EXACT_FIT
  • SHOW_ALL
Question#4

Which of the following is not an ActionScript 3 filter class (from the "flash.filters" package)?

  • DropShadowFilter
  • ColorFilter
  • GlowFilter
  • ShaderFilter
Question#5

Which ActionScript 3 class listed below can only be used when publishing to an AIR (Adobe Integrated Runtime) application?

  • ObjectEncoding
  • StageDisplayState
  • NativeDragActions
  • ApplicationDomain
Question#6

What is the "CSMSettings" ActionScript 3 class used for?

  • Defining text anti-aliasing property values
  • Storing content management system color preferences
  • Describing the type of motion easing to use for animated display objects
  • Setting preferences before loading an external asset over an HTTP connection
Question#7

Which of the following is a real ActionScript 3 class?

  • Zero
  • None
  • Noid
  • Empty
Question#8

"MVC", a common programming design pattern used in ActionScript, stands for what?

  • Modeling Versus Computing
  • Master Variable Control
  • Model View Controller
  • Many Variable Cycles
Question#9

The "fl.controls" package contains what type of ActionScript classes?

  • Mouse and keyboard input device events
  • Classes to move MovieClip and Sprite instances around the stage
  • Keycode characters
  • Visual components such as buttons, scrollbars and checkboxes
Question#10

Using ActionScript, which of the following is NOT a valid way to create an Array instance?

  • my_array = [1,2,3]
  • my_array = array(1,2,3)
  • my_array - new Array(1,2,3)
  • my_array = []