-
Notifications
You must be signed in to change notification settings - Fork 2
Robotlegs Quiz
Ondina edited this page Sep 9, 2011
·
4 revisions
Robotlegs Quiz
Conditions:
Only newbies are allowed to participate.
Cheating is allowed, but not recommended ;)
You have to answer at least 15 questions correctly.
Note: Some questions have more than one correct answer.
The Questions:
###1. Who is the creator of robotlegs-as3?- Shaun Smith
- Stray
- Joel Hooks
- Till Schneidereit
- Robert Penner
- None of the above
- Shaun Smith
- Stray
- Joel Hooks
- Till Schneidereit
- Robert Penner
- None of the above
- Shaun Smith
- Stray
- Joel Hooks
- Till Schneidereit
- Robert Penner
- None of the above
- Shaun Smith
- Stray
- Joel Hooks
- Till Schneidereit
- Robert Penner
- None of the above
- Robotlegs is a pure AS3 micro-architecture framework for developing Flash, Flex, and AIR applications.
- Something related to robotics.
- A toy.
- true
- false
- Model-View-Controller
- Marvel vs. Capcom
- Maximum Voluntary Contraction
- The Context provides a central event bus and takes care of its own startup and shutdown.
- A Context defines scope. Framework actors live within a Context and communicate with one another within the scope of that Context.
- A processor state.
- [inject]
- [INJECT]
- [InJect]
- [Inject]
- Property (field) Injection
- Parameter (method/setter) Injection
- Constructor Injection
- All of the above
- injector.mapValue(SomeModelClass, someModelClassInstance)
- injector.mapClass(SomeModelClass, SomeModelClass)
- injector.mapClass(ISomeModelClass, SomeModelClass)
- injector.mapSingleton(SomeModelClass, SomeModelClass)
- None of the above.
- [Inject]
private var someValue:SomeType; - [Inject]
public var someValue:SomeType; - [Inject];
public var someValue:SomeType;
- true
- false
- true
- false
- true
- false
- true
- false
dispatch(new SomeResultsEvent(SomeResultsEvent.DATA_RECEIVED, someTypedPayload))
- yes
- no
- true
- false
- true
- false
- true
- false
- true
- false
- true
- false
- true
- false
- true
- false
- true
- false
- true
- false
- true
- false
public class Main extends Sprite { private var context:SomeContext;2.public function Main() { context = new SomeContext(this); }
}
public class Main extends Sprite { public function Main() { var context:SomeContext= new SomeContext(this); } }
###29. Would the following code work?
package controller { import model.SomeModel; import org.robotlegs.mvcs.Command; public class SomeCommand extends Command { [Inject] public var model:SomeModel; [Inject] public var event:SomeModel; override public function execute():void { model.someMethod(); } } }
- yes
- no
- yes
- no