MXML
Actionscript
Events
SE Principles
MVC
100
The M in MXML stands for this
What is Macromedia
100
Class names usually start with this case of letter
What is Uppercase
100
This event is raised when the user releases the mouse
What is MOUSE_UP
100
This type of code is used to plan out the flow of logic before actual code is written
What is pseudocode
100
MVC is a type of this, which is a strategy for organizing software
What is design pattern
200
This attribute allows you to link various libraries to your application
What is xmlns
200
This key word instantiates a class
What is new
200
This event is raised when the application has finished loading
What is CREATION_COMPLETE
200
This is the name of the approach where a complex problem is solved by breaking it into smaller problems first, and then repeating the process until each exact step of the solution becomes clear
What is Top Down Approach
200
When you Google a search term, the portion of the search engine which takes in the search term and then returns the search results is this part of MVC
What is controller
300
An MXML file that contains visual elements for reuse is called this
What is component
300
This keyword makes a variable notify its observers whenever its value changes
What is Bindable
300
This type of method is called when an event is raised
What is event handler
300
A finite state machine diagram typically consists of states, events, and these
What is actions to take for each event
300
When you Google a search term, the portion of the search engine that neatly displays the search results is this part of MVC
What is view
400
When an attribute name is followed by . and another word, this attribute is said to correspond to a certain this
What is state
400
These types of methods can be only called by the class and its children
What is protected
400
This method is used in actionscript to bind certain events to certain methods
What is addEventListener
400
The separation of code into reuseable peices (methods, classes, components, etc) is called this
What is modularization
400
In this online Jeopardy web game, the portion of the game that holds the data regarding the questions is this part of MVC
What is model
500
An MXML component can also be used as actionscript this
What is class
500
A person's age is best represented by this variable type
What is uint
500
This property of the mouseEvent object refers to the object that received the mouse event
What is target or currentTarget
500
You should do this frequently in small steps when writing a large application, as opposed to doing this at the end after finishing writing all the code
What is run and test (or run and verify)
500
In Flex, models and controllers are typically written as these type of files
What are actionscript files