Showing posts with label Flash Multiple Choice Questions And Answers. Show all posts
Showing posts with label Flash Multiple Choice Questions And Answers. Show all posts

Wednesday, 2 September 2015

Flash Page9 Multiple Choice Questions And Answers

81) A white box with a diagonal red line through it means...
 
  A. ... no color. (Correct Answer)
  B. ... do not enter.
  C. ... no data.
Ans: A

82) You can change a solid color into a gradient in the....
 
  A. ... color menu.
  B. ... swatches menu.
  C. ...properties inspector.
  D. ... all of the above. (Correct Answer)
Ans: D

83) You cannot change the angle or length of a gradient.
 
  A. True
  B. False (Correct Answer)
Ans: B

84) Clicking and dragging with the pen tool creates...
 
  A. a straight line.
  B. a curved line. (Correct Answer)
Ans: B

85) When the pen tool has a small plus side next to it, it means you can...
 
  A. ...edit an anchor point
  B. ...create an anchor point. (Correct Answer)
  C. ...delete an anchor point.
Ans: B

86) A pen tool with a small circle next to it means you can...
 
  A. ...close a shape. (Correct Answer)
  B. ...open a shape.
  C. ...delete a shape.
Ans: A

87) With the brush tool selected, you can adjust your brush shape and size in the tool bar.
 
  A. true (Correct Answer)
  B. false
Ans: A

88) Clicking and dragging the playhead will "scrub" through your movie so you can see the animation.
 
  A. True (Correct Answer)
  B. False
Ans: A

89) When nothing is selected, you can adjust the following in the Properties Inspector.
 
  A. stage size
  B. background color
  C. frame rate
  D. all of the above (Correct Answer)

Ans: D

90) If you want to see faint images of the keyframes before and after the current frame, you would turn on...
 
  A. ...movie testing.
  B. ...onionskinning. (Correct Answer)
  C. ...dull opacity.
Ans: B

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

Flash B.Com ,MBA Questions And Answers

71) A stroke is...
 
  A. ...the width of the paintbrush.
  B. ... the color of the paintbrush.
  C. ... the outline around a shape. (Correct Answer)
  D. ... the fill of a shape.
Ans: C

72) You can control the fluidity of the line drawn with the pencil tool.
 
  A. True (Correct Answer)
  B. False
Ans: A

73) You can control the width, patterning, color and smoothing of a Pencil stroke all in the....
 
  A. ... Commands Menu.
  B. ... Properties Inspector. (Correct Answer)
  C. ... Behaviors Menu.
Ans: B

74) When drawing with the Rectangle Tool, if you wanted to make a perfect square, you would hold down the _____ key while drawing.
 
  A. shift (Correct Answer)
  B. option
  C. control
  D. command
Ans: A

75) To make a donut shape you would use the...
 
  A. ... Oval Tool.
  B. ... Oval Primitive Tool and adjust the Start Angle.
  C. ... Oval Primitive Tool and adjust the Inner Radius. (Correct Answer)
Ans: C

76) Double-clicking on a stroke will...
 
  A. ... select the entire stroke. (Correct Answer)
  B. ... select the entire object.
  C. ... delete the entire stroke.

Ans: A

78) The ink bottle changes the color of...
 
  A. ...strokes. (Correct Answer)
  B. ...fills.
  C. ...the background.
Ans: A

79) To keep an shape from "taking a bite" out of another shape when it is dragged over and then moved later on, you can... (2 correct answers)
 
  A. ... draw the shape with "object drawing" selected in the tools panel. (Missed)
  B. ... group the shapes into an object. (Missed)
  C. ... change the color of the shapes.
Ans: A,B

80) The transformation point is...
 
  A. ... the fading in a color gradient.
  B. ... the phase at which an object is rendered.
  C. ... the point from which an object or shape is rotated or scaled. (Correct Answer)
Ans: C

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

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