Wednesday 2 September 2015

Flash Fresher Questions And Answers

61) What is an acceptable instance name?
 
  A. 1thumb_mc
  B. thumb01.mc
  C. *thumb01_mc
  D. $01thumb (Correct Answer)
  E. 1thumb.mc
Ans: D

62) What is dot syntax?
 
  A. Refers to when a dot or period (.) is used in actionscript to conclude a line of code.
  B. Refers to when a dot or period (.) is used in actionscript to access a property or method of an object. (Correct Answer)
  C. Refers to when a dot or period (.) is used in actionscript to being a function.
  D. Refers to when a dot or period (.) is used in actionscript to set a parameter.
Ans: B

63) What is not a possible value for a boolean variable?
 
  A. 0
  B. on (Correct Answer)
  C. false
  D. 1
  E. true
Ans: B

64) Which option represents the correct syntax for writing an event listener for a movie clip called "sandbox_mc"
 
  A. sandbox_mc.addeventlistener(mouseevent.click, buildCastle);
  B. sandbox_mc.addEventListener(MouseEvent.Click, buildCastle);
  C. sandbox_mc.addEventListener(MouseEvent.CLICK, buildCastle); (Correct Answer)
  D. sandBox_mc.addEventListener(MouseEvent.Click, buildCastle);
  E. sandBox_mc.addEventListener(MouseEvent.CLICK, buildCastle);
Ans: C

65) To instruct a button to stop on the first frame of another scene, called "replay," you would need to call the following method
 
  A. gotoandplay(1, "replay");
  B. gotoAndPlay("replay", 1);
  C. gotoAndStop("replay", 1);
  D. gotoAndStop(1, "replay"); (Correct Answer)
  E. gotoandstop(1, "replay");
Ans: D

66) If you want a button to not be visible to the user but still listen for events, you would need to...
 
  A. set the property .alpha = 0 (Correct Answer)
  B. set the property .visible = true
  C. set the property .alpha = 1;
  D. set the property .visible = false;
Ans: A

67) In order to refer to an imported sound in actionscript,
 
  A. you need to give it an instance name in the property window.
  B. you need to give it an instance name in the library.
  C. you need to set its linkage properties to export for actionscript and assigning it a class by right clicking on the sound in the library and pulling up the "linkage" dialogue box. (Correct Answer)
  D. you need to set its linkage properties to export for actionscript and assigning it a class in the properties window by pulling down the "linkage" option.
Ans: C

68) Actionscript refers to movieclips via their...
 
  A. symbol name
  B. instance name (Correct Answer)
Ans: B

69) functions need to be bracketed by....
 
  A. [...]
  B. (...)
  C. {...} (Correct Answer)
  D. :...; (Your Answer)
Ans: C

70) What is the most common user error (according to Meg) in writing actionscript?
 
  A. forgetting to name your instances
  B. misspelling an instance name or variable
  C. forgetting a { or }
  D. all of the above (Correct Answer)
Ans: D

More Questions & Answers:-
Page1 Page2 Page3 Page4 Page5 Page6 Page7 Page8 Page9

No comments:

Post a Comment