Category: Adobe
Flydumps provides guarantee of Adobe 9A0-602 exam because Flydumps is an authenticated IT certifications site and the high class of the products are developed due to extensive hiring of the experts staff.Adobe 9A0-602 study guide is updated with regular basis and the answers are rechecked of every exam.What’s more,you can download the free demos in PDF file,it would be a great help for your exam.All the dumps are updated and cover every aspect of the examination
QUESTION 30
What method of the Color object is used to change the Alpha property of a movie clip with ActionScript?
A. _alpha
B. setProperty
C. setRGB
D. setTransform
Correct Answer: D QUESTION 31
What is the valid syntax to set a property named “id” for an object defined below? (Choose TWO) var myObject:Object = new Object();
A. var myObject.id:String = “myString”;
B. myObject[id] = “myString”;
C. myObject.id = “myString”;
D. var id:String = myObject[“myString”];
E. myObject.id.string = “myString”;
F. myObject[“id”] = “myString”;
G. myObject(id) = “myString”;
Correct Answer: CF
QUESTION 32
What is true of the relationship between a subclass and a superclass? A subclass
A. is a simplified interface for a complex superclass.
B. does not have a constructor and a superclass has multiple constructors.
C. receives the properties and methods from a superclass.
D. is a class with only properties while a superclass is a class with both properties and methods.
Correct Answer: C
QUESTION 33
What native object allows two separate Flash movies to communicate with each other?
A. SharedConnection
B. LocalConnection
C. LocalObject
D. SharedObject
Correct Answer: B
QUESTION 34
What are examples of absolute target paths? (Choose TWO)
A. mcCircle
B. _level0.mcCircle
C. this._parent.mcCircle
D. _root.mcCircle
E. this.mcCircle
Correct Answer: BD
QUESTION 35
Code on the main Timeline of a movie:
stop_btn.onRelease = function() {
this.stop();
stop();
}
What code will halt the movie on the main Timeline when the button is clicked?
A. stop()
B. both this.stop() and stop()
C. neither this.stop() nor stop()
D. this.stop()
Correct Answer: A QUESTION 36
When using the loadVars() object, the Flash Player is restricted to loading variables that
A. use the same Middleware.
B. have the same target.
C. have ASP or SWF suffix.
D. are from the same domain.
Correct Answer: D
QUESTION 37
What defines a function that returns no value?
A. function writeMessage:Null (sMessage) { tMessageField.text = sMessage; }
B. function writeMessage(sMessage):Void { tMessageField.text = sMessage; }
C. function writeMessage:Void (sMessage) { tMessageField.text = sMessage; }
D. function writeMessage(sMessage):Null { tMessageField.text = sMessage; }
Correct Answer: B
QUESTION 38
What is the value of myResult?
var my_array:Array = new Array(‘one’,’two’,’three’,’four’); myResult = my_array[2];
A. one
B. two
C. four
D. three
Correct Answer: D
QUESTION 39
What item can be added to the Flash Player’s context menu?
A. About
B. Settings
C. Download
D. Flash Player
Correct Answer: C
QUESTION 40
When can Flash Player 7 access data served from a different domain than the domain serving the SWF file?
A. anytime the System.security.allowDomain() method is used
B. only when an HTTPS connection is used
C. when a cross-domain policy file is used that specifies the SWFs originating server
D. never
Correct Answer: C
QUESTION 41
What is used to create frame rate independent script-based animations?
A. while
B. setInterval
C. onEnterFrame
D. gotoAndPlay
Correct Answer: B
QUESTION 42
What best defines the debuggers Watch list?
A. list of variables you mark to view in a separate pane
B. list of variables that the debugger determines do not match the declared type for that variable
C. undefined/problem variables
D. series of time increments between breakpoints
Correct Answer: A
QUESTION 43
What property of the TextField class is used to define the text in a text field?
A. myTextField.variable
B. myTextField.text
C. myTextField.txt
D. text boxes cannot have instance names
Correct Answer: B
QUESTION 44
Five movie clips are placed on the main Timeline of a movie, each with an onMouseDown event handler. When the movie plays and the Stage is clicked, which of the five movie clips onMouseDown event handlers will be invoked?
A. movie clip on the topmost layer in the timeline
B. all movie clips under the mouse pointer at the time of the click
C. all of the movie clips
D. only the topmost movie clip under the mouse pointer at the time of the click
Correct Answer: C
QUESTION 45
Onstage there is one movie clip with an instance name “myClip” and one button instance (not a
component) with an instance name “myButton”. The “myButton” button has the following coding.
on(press) { this._alpha=10; }
When testing the movie, what happens when the user presses the button?
A. button turns to 10% alpha
B. button and the clip turn to 10% alpha
C. nothing happens because no object is addressed
D. nothing happens because there’s a script error
Correct Answer: A QUESTION 46
What statement generates an error that can be handled by a finally{} code block?
A. catch
B. trace
C. break
D. throw
Correct Answer: D
QUESTION 47
What is the value of “myValue”? var myValue = Math.ceil(54.22);
A. 54.2
B. 54
C. 54.3
D. 55
Correct Answer: D
QUESTION 48
If the local date is Sunday, June 2, 2003 and the lines of ActionScript are executed, what is the value of
myDay?
var my_date:Date = new Date();
var myDay:Number = my_date.getDay();
A. 1
B. Sunday
C. 0
D. 2
E. Sun
Correct Answer: C
QUESTION 49
What is added to the Actions panel to include ActionScript in an external file named “actionlib.as”?
A. #include “actionlib.as”;
B. #include actionlib.as;
C. #include(“actionlib.as”)
D. include(“actionlib.as”);
E. #include “actionlib.as”
Correct Answer: E
QUESTION 50
When playing from a projector, what sends the name and value of the variable “username” using the
POST method?
username = “fred”;
A. getURL (“http://localhost/flashtest.asp?username=” + username, “_blank”);
B. getURL (“http://localhost/flashtest.asp”, “_blank”, “POST”);
C. getURL (“http://localhost/flashtest.asp”, “_blank”, “GET”);
D. Flash MX 2004 is unable to POST from a projector.
Correct Answer: D QUESTION 51
What ActionScript error will occur for the code below? function snap {
k = 42 % 0;
}
A. % is not a valid operator
B. function declarations missing parenthesis
C. function must return a value
D. there is no exception processing for a division by zero error
Correct Answer: B QUESTION 52
How many interfaces can a single class implement?
A. 2
B. 0
C. 1
D. no limit
Correct Answer: D QUESTION 53
What type of animation is NOT available for a shape until it is converted into a symbol?
A. frame-by-frame animation
B. shape tweening
C. onion skinning
D. motion tweening
Correct Answer: D QUESTION 54
What is true when using the duplicate Movie Clip() method?
A. duplicated movie clip can have a different parent than the source movie clip
B. movie clip that is at a depth of 4 will appear to be in front (or on top of) a movie clip that has a depth of 7
C. two movie clips can exist at the same depth and have the same parent provided they have unique instance names
D. _visible property of a movie clip is set to true upon duplication
Correct Answer: D QUESTION 55
What type of object does the setDataProvider() method of the ComboBox component accept?
A. MovieClip object
B. TextField object
C. Object object
D. Array object
Correct Answer: D QUESTION 56
What code creates an object named “person” with the two properties “name” and “age”?
A. person = new Object(name=”fred”, age=24);
B. person = new Array(name:”fred”,age:24);
C. person = {name:”fred”,age:24};
D. person = (name=”fred”,age=24);
Correct Answer: C
QUESTION 57
What shows a valid data provider assigned to a List component instance named “clProducts”?
A. clProducts.dataProvider = {label: “Flash MX 2004”, data: “flash”};
B. clProducts.dataProvider = [label: “Flash MX 2004”, data: “flash”];
C. clProducts.dataProvider = {[label: “Flash MX 2004”, data: “flash”]};
D. clProducts.dataProvider = [{label: “Flash MX 2004”, data: “flash”}];
Correct Answer: D
QUESTION 58
What assigns an array of three elements to the variable myList?
A. myList = “a,b,c”.split(“,”);
B. myList = [“a,b,c”];
C. myList = new Array(“a,b,c,”);
D. myList = “a,b,c”;
Correct Answer: A
QUESTION 59
What does Flash Remoting use to communicate with the Flash client?
A. WSDL
B. XHTML
C. SOAP
D. AMF
Correct Answer: D
QUESTION 60
What changes are represented by DeltaPackets?
A. DataSets
B. SharedObjects
C. RecordSets
D. DataHolders
Correct Answer: A
QUESTION 61
What is the value of x?
function doJoin (a, b) {
return a + b;
}
x = doJoin(5, doJoin(3, 2));
A. 5
B. “return a + b”
C. “doJoin(5, doJoin(3, 2))”
D. 10
Correct Answer: D
QUESTION 62
What file formats can be loaded into a Flash MX 2004 movie dynamically at runtime? (Choose TWO)
A. JPG
B. GIF
C. MP3
D. FLA
E. BMP
Correct Answer: AC
QUESTION 63
What ActionScript commands allow sending data out of a Flash application to a server-side application? (Choose TWO)
A. loadData
B. onSend
C. getURL
D. onLoad
E. loadMovie
Correct Answer: CE
QUESTION 64
Where are variables that are loaded via a LoadVars object referenced?
A. within an array
B. in properties of the LoadVars object where they are loaded
C. directly into a TextField object
D. on the timeline where they are loaded
Correct Answer: B
QUESTION 65
What is the most efficient method to remove trace statements from compiled code?
A. manually delete trace statements
B. comment out trace statements
C. remove only the contents of the trace statements but leave the trace function call
D. select “Omit trace actions” from the publish dialog box
Correct Answer: D
QUESTION 66
What is a valid property of the new Flash MX 2004 Error class that contains information about an error that occurred within a script. (Choose TWO)
A. Error.number
B. Error.value
C. Error.message
D. Error.output
E. Error.name
Correct Answer: CE QUESTION 67
What is the main use of the TextSnapshot class?
A. Captures the dynamic text used in a movie clip for export to a screen reader.
B. Returns text measurement information (width, height, kerning, etc.) for specified text strings within a movie clip.
C. Outputs a list of the fonts used within the text fields of a movie clip.
D. Allows static text in a movie clip.
Correct Answer: D QUESTION 68
After a ScrollPane component instance completes loading external content (SWF or JPG), what event does it dispatch to its listener objects?
A. loaded
B. success
C. complete
D. finished
Correct Answer: C QUESTION 69
What code is inserted on the first frame of a Flash document to make sure that _root references work properly when the movie is loaded into a parent movie?
A. this._lockroot = true;
B. _root = this;
C. this.enabled = true;
D. this.rootlocked = true;
Correct Answer: A QUESTION 70
Where must ActionScript 2 classes be located?
A. frame 1 of _root
B. external files
C. top layer of timeline
D. components
Correct Answer: B
Adobe 9A0-602 tests containing questions that cover all sides of tested subjects that help our members to be prepared and keep high level of professionalism.The main purpose of Adobe 9A0-602 exam is to provide high quality test that can secure and verify knowledge, give overview of question types and complexity that can be represented on real exam certification
Are you struggling for the Adobe 9A0-502 exam? Good news,Flydumps IT technical experts have collected and certified 445 questions and answers which are updated to cover the knowledge points and enhance candidates’abilities.With Adobe 9A0-50 preparation tests you can pass the exam easily and go further on Microsoft career path.
QUESTION 11
What is a benefit of using the Trace Bitmap to convert simple bitmap files to vector art?
A. smaller file sizes
B. larger blocks of color are easier to edit
C. vector art can be converted to symbols
D. vector art is reusable and will not add file size when it is copied and pasted
Correct Answer: A
QUESTION 12
What Color Swatches option will always display web-safe colors?
A. Default
B. Web 216
C. Web 256
D. Web Custom
Correct Answer: B
QUESTION 13
What are correct statements concerning text fields? (Choose TWO)
A. Embedded font outlines are shared by text fields using the same font.
B. Font outlines for input text fields are embedded in the SWF file by default.
C. Font outlines for static text fields are embedded in the SWF file by default.
D. Font outlines for dynamic text fields are embedded in the SWF file by default.
E. Individual font outlines are embedded into the SWF file for each text field in the FLA file.
Correct Answer: AC
QUESTION 14
How can a text field display a font that is NOT on a client computer? (Choose TWO)
A. include the font in a bitmap
B. set Font._global = fontType;
C. set the text field to Static behavior
D. add the font in the Flash MX 04 Preferences panel
E. use a dynamic text field and select the character option
Correct Answer: CE
QUESTION 15
What color option from the Property inspector should be selected to apply tint and alpha simultaneously to a symbol?
A. Expert
B. Advanced
C. Brightness
D. Tint / Alpha
Correct Answer: B
QUESTION 16
What is the default theme for version 2 components?
A. Ice Theme
B. Halo Theme
C. Sample Theme
D. FlashDefault Theme
Correct Answer: B
QUESTION 17
How is a new symbol created in the Library? (Choose TWO)
A. Select Insert > New Symbol
B. Select Modify > Add New Symbol
C. Select Insert > Timeline > New Symbol
D. Click the New Symbol button on the Library panel
E. Right or control-click on the Stage, and then choose New Symbol from the context menu
Correct Answer: AD
QUESTION 18
What are Themes in Flash MX 2004?
A. collections of common sounds libraries for composing soundtracks
B. collections of templates for creating multi-purpose FLA documents
C. collections of styles and skins for customizing version 2 components
D. collection of commands for customizing the Flash IDE (Integrated Development Environment)
Correct Answer: C
QUESTION 19
What is the file extension for swatches saved in Macromedia Flash Color Swatches panel?
A. CLR
B. ACO
C. CFM
D. XML
Correct Answer: A
QUESTION 20
What fonts, if installed, are more likely to be selected from the local system by the Flash Player to display during a playback of a SWF file containing text using the “_sans” device font?
A. Helvetica, Arial, Verdana
B. Georgia, Garamond, Arial
C. Courier, Helvetica, Verdana
D. Times New Roman, Arial, Helvetica
E. Times New Roman, Courier, Verdana
Correct Answer: A
QUESTION 21
What text property CANNOT be designated when a text field is set to Dynamic Text?
A. Font Size
B. Justification
C. Line Spacing
D. Character Spacing
Correct Answer: D QUESTION 22
Embedded fonts
A. decrease file size.
B. use HTML formatting.
C. are included within a SWF.
D. rely on fonts installed on a user’s system.
Correct Answer: C
QUESTION 23
What is the hit frame of a Button symbol?
A. defines the clickable area of a button
B. only matters when exporting to Flash 4
C. displays when a user left-clicks on a button
D. contains sounds played when a user left-clicks on a button
Correct Answer: A
QUESTION 24
What happens when you double-click the icon of a symbol in the library?
A. Macromedia Flash switches to Symbol Editing mode.
B. Macromedia Flash displays the Symbol Properties window.
C. Macromedia Flash deletes the current layers in the timeline.
D. Macromedia Flash places an instance of the symbol on the Stage.
Correct Answer: A
QUESTION 25
What is the most highly processor intensive animation technique?
A. alpha effects
B. motion tween
C. onion skinning
D. brightness effects
Correct Answer: A
QUESTION 26
Name the two types of graphs available when using the Bandwidth Profiler? (Choose TWO)
A. Bit Rate Graph
B. Byte Size Graph
C. Streaming Graph
D. Motion Frame Graph
E. Frame by Frame Graph
Correct Answer: CE
QUESTION 27
What does the Sound object allow? (Choose TWO)
A. control the volume of a sound
B. delete portions of a sound clip
C. alter the sampling rate of a sound
D. set the left/right balance of a sound
Correct Answer: AD QUESTION 28
What Font option will result in the smallest exported file size?
A. Arial
B. _sans
C. _verdana
D. Helvetica
Correct Answer: B QUESTION 29
What is a Panel Set used for?
A. storing a user interface layout for sharing and later use
B. setting the resolution of Copy and Paste operations involving bitmaps
C. customizing Macromedia Flash options and activating certain features
D. retrieving additional support information from Macromedia Answers database
Correct Answer: A QUESTION 30
What does the “Open as Library” menu allow?
A. convert a symbol into a library item
B. open the library of current document
C. open libraries from other graphic programs
D. open libraries from other Macromedia Flash Files
Correct Answer: D QUESTION 31
What will adding a preloader to your movie do?
A. allows the movie to playback faster
B. asks user for a password to view the movie
C. allows the movie to be saved locally before playback
D. prevents the movie from playing until a predetermined amount of frames are loaded
Correct Answer: D QUESTION 32
What is the purpose of the “Protect from Import” option in the Publish Settings dialog box?
A. prevents a SWF file from loading external file
B. prevents other developers from opening a FLA file
C. prevents other developers from decompiling a SWF file
D. prevents other developers from importing a FLA file into another FLA file
Correct Answer: C QUESTION 33
How is declining image quality prevented when publishing to a SWF if bitmap images are optimized prior to importing them into Flash?
A. Re-import the bitmaps in an uncompressed format.
B. Do nothing. Bitmaps aren’t compressed when the SWF is published.
C. Convert bitmaps to symbols so that they are not compressed by Flash.
D. In Publish Settings, under the Flash Tab, set the JPEG Quality slider to 100.
Correct Answer: D
QUESTION 34
What are ways to optimize animations to reduce processor usage? (Choose TWO)
A. use embedded font families
B. remove unused symbols from the library
C. remove unused frames after the end of a tween
D. use tweened animations instead of series of keyframes
Correct Answer: CD
QUESTION 35
Why is generating a Size report useful?
A. manages the print size of a document when using the PrintJob class
B. identify items which are contributing to the growth in size of a SWF file
C. lists width and height of each symbol instance placed on the main Stage
D. controls the bitmap compression when exporting a document as image
Correct Answer: B
QUESTION 36
What should be kept to a minimum in any Macromedia Flash file in order to enhance playback optimization? (Choose TWO)
A. Layers
B. Gradients
C. Device Fonts
D. Graphic symbols
E. Alpha Transparency
Correct Answer: BE
QUESTION 37
What statement is NOT correct?
A. Flash Player 7 is free to download
B. Flash Player 7 supports ActionScript 1.0
C. Flash Player 7 supports ActionScript 2.0
D. Flash Player 7 supports embedded and streaming sound
E. Flash Player 7 supports embedded video, but not streaming video
Correct Answer: E
QUESTION 38
An instance of the “Logo” MovieClip symbol is placed on the main Timeline. The instance is given the name l1. What is the correct target path?
A. _root.l1
B. _logo.l1
C. _root.logo
D. _library.logo.l1
Correct Answer: A
QUESTION 39
What is used to distribute selected objects so that their centers or edges are evenly spaced?
A. Edit menu
B. Info panel
C. Alignment panel
D. Properties panel
E. Transform panel
Correct Answer: C
QUESTION 40
When is it advisable to select the Alias Text feature?
A. using static text
B. using smaller text sizes
C. end user has an older version of the player
D. text is being motion tweened across the stage
E. using a dynamic scrollbar that calls text from an external source
Correct Answer: B
Acquiring Adobe 9A0-502 certifications are becoming a huge task in the field of I.T. More over these exams like Adobe 9A0-502 exam are now continuously updating and accepting this challenge is itself a task.This Adobe 9A0-502 practice test is an important part of Microsoft certifications and at Adobe 9A0-502 certification Flydumps we have the resources to prepare you for this.The Adobe 9A0-502 exam is essential and core part of Adobe 9A0-502 certifications and once you clear the exam you will be able to solve the real time problems yourself.
Flydumps is the best place for preparing IT Certifications as we are providing latest and guaranteed questions for all certifications.We offer you the ultimate preparation resource of Adobe 9A0-311 exam question. Wondering what could be this effective? It is our training material which serves as a guide to achieving your dream as a certified professional.
QUESTION 11
What are the three main ways of presenting video using Flash?
A. embedded, progressive, filtered
B. embedded, On2 VP6, streaming
C. embedded, progressive, streaming
D. embedded, progressive, stand-alone
E. embedded, progressive, Soresson Spark
Correct Answer: C
QUESTION 12
How is declining image quality prevented when publishing to a SWF, if bitmap images are optimized prior to importing them into Flash?
A. Re-import the bitmaps in an uncompressed format.
B. Do nothing. Bitmaps aren’t compressed when the SWF is published.
C. Convert bitmaps to symbols so that they are not compressed by Flash.
D. In Publish Settings, under the Flash Tab, set the JPEG Quality slider to 100.
Correct Answer: D
QUESTION 13
What should be kept to a minimum in any Flash file in order to enhance playback optimization? (Choose TWO)
A. Layers
B. Gradients
C. Device Fonts
D. Graphic symbols
E. Alpha Transparency
Correct Answer: BE
QUESTION 14
What are correct statements concerning text fields? (Choose TWO)
A. Embedded font outlines are shared by text fields using the same font.
B. Font outlines for input text fields are embedded in the SWF file by default.
C. Font outlines for static text fields are embedded in the SWF file by default.
D. Font outlines for dynamic text fields are embedded in the SWF file by default.
E. Individual font outlines are embedded into the SWF file for each text field in the FLA file.
Correct Answer: AC
QUESTION 15
What Flash elements can be assigned instance names? (Choose THREE)
A. Layers
B. Frames
C. Buttons
D. Tweens
E. Text Boxes
F. MovieClips
Correct Answer: CEF
QUESTION 16
What method loads external JPG images into a MovieClip instance?
A. getURL();
B. loadMovie();
C. loadImage();
D. loadMovieNum();
Correct Answer: B
QUESTION 17
What type of graphic formats are calculated mathematically and have the ability to scale without losing their quality?
A. GIF
B. JPEG
C. Vector
D. Bitmap
E. Scanned
Correct Answer: C
QUESTION 18
How is the Object Drawing Mode used?
A. merges drawn shapes when they are overlapped
B. centers drawn objects in the authoring environment
C. draws shapes and automatically converting them into graphic symbols
D. draws shapes as separate objects that do not automatically merge together when overlaid
Correct Answer: D
QUESTION 19
When importing a FreeHand or Illustrator file that contains a gradient fill with more than eight colors, what is used to simulate the appearance of a gradient fill?
A. Target Path
B. Radial Path
C. Clipping Path
D. Gradient Path
Correct Answer: C
QUESTION 20
What must be true in order to enable bitmap caching on a movie clip symbol? (Choose TWO)
A. complex vector artwork, nested animation, and its position changes in time
B. complex vector artwork, no nested animation, and its position changes in time
C. complex vector artwork, nested animation, and its position does not change in time
D. complex vector artwork, nested animation, and it is larger than 2880 pixels in width
E. complex vector artwork, no nested animation, and its position does not change in time
Correct Answer: BE
QUESTION 21
What method of the TextField.StyleSheet class is used to add a new style to a style sheet object?
A. addStyle();
B. setStyle();
C. setNewCSS();
D. addStyleSheet();
Correct Answer: B QUESTION 22
What is the default theme for version 2 components?
A. Ice Theme
B. Halo Theme
C. Sample Theme
D. FlashDefault Theme
Correct Answer: B QUESTION 23
What does selecting the Render Text as HTML button on the Property inspector with a dynamic text field selected do?
A. improves SWF performance
B. converts the displayed text into HTML tagged text
C. enables the text field to load HTML files at runtime
D. enables the text field to render certain HTML tags including <A>, <B>, and <FONT>
Correct Answer: D QUESTION 24
When two path segments meet, what is NOT a join option?
A. Miter
B. Bevel
C. Square
D. Round
Correct Answer: C QUESTION 25
What does an empty or white circle signify on a frame in the timeline?
A. an action
B. blank keyframe
C. a keyframe with a symbol on it
D. the first frame of an animation
Correct Answer: B QUESTION 26
What are benefits of Flash Remoting? (Choose TWO)
A. automatically parses custom XML
B. provides access to client hard disk
C. accesses server-side methods as if they are local
D. provides access to user Webcams and microphones
E. integrates external data sources directly with Flash UI components
Correct Answer: CE QUESTION 27
How are specific frames designated as printable from the Macromedia Flash Player?
A. assign each frame the label “#p”
B. set Formats in the Publish Settings
C. place an onPrint action on each frame
D. set Page Setup in the Macromedia Flash program
Correct Answer: A
QUESTION 28
What statements are correct about shape tweens? (Choose TWO)
A. Only 1 keyframe is needed.
B. Each keyframe must contain symbols.
C. Each keyframe must not contain symbols.
D. A light blue arrow in the timeline denotes a shape tween.
E. There must be at least 2 keyframes in order to create a shape tween.
Correct Answer: CE
QUESTION 29
What best describes the purpose of setInterval?
A. defines the SWF frame rate dynamically, at runtime
B. repeats calls to a function every set number of milliseconds
C. creates a function that repeats every set number of frames
D. creates a function that executes once at a specified point in the future
Correct Answer: B
QUESTION 30
What is the most highly processor intensive animation technique?
A. alpha effects
B. motion tween
C. onion skinning
D. brightness effects
Correct Answer: A
QUESTION 31
What native object allows a developer to save data to a client computer, assuming the user has given permission?
A. LocalObject
B. LocalCookie
C. SharedObject
D. SharedCookie
Correct Answer: C
QUESTION 32
What does the Sound object allow? (Choose TWO)
A. control the volume of a sound
B. delete portions of a sound clip
C. alter the sampling rate of a sound
D. set the left/right balance of a sound
Correct Answer: AD QUESTION 33
A button instance is named circle_btn. ActionScript is placed on the main Timeline so that when the button is clicked a movie clip instance named rec_mc ‘ s width is changed to 100. What is the code to perform this action?
A. circle_btn.onRelease = function() { this.width=100; }
B. circle_btn.onRelease { rec_mc._width=100; }
C. circle_btn.onRelease = function { rec_mc._width=100; }
D. circle_btn.onRelease = function() { rec_mc._width=100; }
Correct Answer: D QUESTION 34
What correctly defines a getter method that retrieves a property named “count”?
A. function count():Number { return _nCount;}
B. function getCount():Number { return _nCount;}
C. function get count():Number { return _nCount; }
D. function getter count():Number { return _nCount;}
Correct Answer: C QUESTION 35
What defines a class named “Car” that receives additional methods and properties from a superclass named “Vehicle”?
A. class Car uses Vehicle {}
B. class Car inherits Vehicle {}
C. class Car extends Vehicle {}
D. class Car derives Vehicle {}
Correct Answer: C QUESTION 36
What transition is NOT one of the default types available via the Tween or TransitionManager Classes?
A. Fade
B. Wipe
C. Zoom
D. Checkerboard
Correct Answer: D QUESTION 37
Where must ActionScript classes be located?
A. components
B. external files
C. frame 1 of _root
D. top layer of timeline
Correct Answer: B QUESTION 38
What is the ActionScript that defines a LoadVars object?
A. LoadVars.new();
B. myLoadVars.new();
C. LoadVars.createNew();
D. var myLoadVars:LoadVars = new LoadVars();
Correct Answer: D
QUESTION 39
Where are variables that are loaded via a LoadVars object referenced?
A. within an array
B. directly into a TextField object
C. on the timeline where they are loaded
D. in properties of the LoadVars object where they are loaded
Correct Answer: D
QUESTION 40
What command removes an interval created with setInterval?
A. deleteInt()
B. clearInterval()
C. interval.cancel()
D. removeInterval()
Correct Answer: B
latest Adobe 9A0-311 exam is one of popular Certification.Many candidates won’t have confidence to get latest Adobe 9A0-311. Now We guaranteed latest Adobe 9A0-311 exam training is available in various formats to best suit your needs and learning style.Whether you are a hands-on tactile learner,visually or even a textbook training veteran,Flydumps has latest Adobe 9A0-311 resources that will enable you to pass your Adobe 9A0-311 test with flying colors.As with Cisco exams,the Adobe 9A0-311 exam is structured to stack or plug into other related courses.The combination of Adobe 9A0-311 courses builds the complete core knowledge base you need to meet your Adobe 9A0-311 certification requirements.
100% Pass!Do you want to pass Adobe 9A0-090 exam quickly? Go to flydumps.com to get more free exam dumps.All the Adobe 9A0-090 dumps are timely updated by the professional experts.Also we guarantee 100% pass and money back guarante
QUESTION 7
Which are the three categories of files displayed by the Dreamweaver Link Checker?
A. Broken Links, External Links, and Invalid Links
B. Broken Links, External Links, and Missing Files
C. Broken Links, External Links, and Orphaned Files
D. Broken Links, External Links, and Unreachable Files
Correct Answer: C
QUESTION 8
Which tool is required to create and deploy a Web site?
A. Web browser
B. Dreamweaver
C. production server
D. application server
Correct Answer: D
QUESTION 9
Which is required when hosting a Web site on a publicly addressable production server?
A. FTP server
B. SSL certificate
C. Web server
D. Application server
Correct Answer: C
QUESTION 10
Which product is required to enable users to play Flash video on a Web page without progressivedownloading?
A. Flash Media Encoding Server
B. Flash Media Interactive Server
C. Flash Media Streaming Server
D. Flash Media Rights Management Server
Correct Answer: C
QUESTION 11
Your site requirements dictate that all pages must load in under 6 seconds for users connecting to the Internet with a 33.6k modem.What is the easiest way to verify that each page in your site meets this requirement?
A. run the Accessibility HTML Report for all pages in your site
B. change your connection speed in your status bar preferences
C. install a modem and browse each page while using a stopwatch
D. use the file browser to ensure that no HTML page is more than 18K
Correct Answer: B
QUESTION 12
Which action does NOT help mitigate page weight?
A. remove extra white space in the code
B. optimize and compress all image files
C. replace a JPEG photo with a GIF image
D. format pages and text using Cascading Style Sheets
Correct Answer: C
QUESTION 13
You are required to publish content stored in a database to a Web page on-demand. Which two types of connectivity are required? (Choose two.)
A. The database must be installed on the web server.
B. Dreamweaver must be able to connect to a database.
C. Your web server must be able to connect to a database.
D. Your application server must be able to connect to a database.
E. Your web server must be able to connect to an application server.
Correct Answer: DE
QUESTION 14
You want to deploy a Web site using Active Server Pages. Which type of server topology is required?
A. PHP Server running on Apple OSX Web Server
B. Apache Server running on aUnix operating system
C. JavaScript Server running on Macromedia ColdFusion
D. Microsoft Windows Server running Internet Information Services
Correct Answer: D
QUESTION 15
You have created a Web page that contains ASP, JavaScript, CSS, and HTML code. Which source code cannot be viewed in the browser by users?
A. ASP
B. CSS
C. HTML
D. JavaScript
Correct Answer: A
QUESTION 16
You have been tasked with developing a form and action page that requires a user to entertheir user name and password so that it may be written to a database. Which two programming languages can you use to enforce a business rule that requires the user to fillspecific form fields before the request is passed to the database server for processing? (Choose two.)
A. XML
B. SQL
C. HTML
D. JavaScript
E. ColdFusion/ASP/JSP
Correct Answer: DE QUESTION 17
Which is NOT a server-side scripting language?
A. PHP
B. VBScript
C. JavaScript
D. PostScript
Correct Answer: D QUESTION 18
Which Dreamweaver panel enables you to run an accessibility check of your pages?
A. Validation
B. Site Reports
C. Link Checker
D. Browser Compatibility
Correct Answer: B QUESTION 19
Your company requires that its Web site comply with accessibility standards. Which two actions improve accessibility? (Choose two.)
A. use DIV containers for all web content
B. insert Label attributes in all form elements
C. remove Title attributes from Frame elements
D. replace animated GIFs with Flash animations
E. add <empty> Alternate text attributes to non-essential images
Correct Answer: BE QUESTION 20
Which data types are available when creating a Spry Data Set in Dreamweaver?
A. SQL and XML
B. XML and CSV
C. HTML and XML
D. HTML and SQL
Correct Answer: C QUESTION 21
What is the advantage of using Spry Framework for AJAX over other server applications?
A. Ajax allows you to create dynamic web pages without relying on JavaScript or VisualBasic.
B. Ajax enables you to create dynamic web pages directly from data stored in Excel spreadsheets.
C. Ajax allows you to use a proprietary development language developed specifically for Dreamweaver.
D. Ajax can refresh data without having to completely reload the page as needed in other server applications.
Correct Answer: D QUESTION 22
Which functionality can be added to a Web page by using the Server Behaviors panel?
A. Swap Image
B. Form Validation
C. Pop-up Message
D. User Authentication
Correct Answer: D QUESTION 23
Which is NOT a data type that can be validated when using the Validate Form Behavior in Dreamweaver?
A. String
B. Number
C. Email Address
D. Number Range
Correct Answer: A QUESTION 24
Which is NOT an example of an Application Server technology?
A. PHP
B. Microsoft IIS
C. Adobe ColdFusion 8
D. Microsoft Active Server Pages
Correct Answer: B QUESTION 25
Which two tasks does an Application Server enable you to perform? (Choose two.)
A. Play a progressive download FLV
B. process a file uploaded through a web form
C. dynamically query and display results from a database
D. dynamically validate data as a user types it into a form
E. validate an entire user’s form before it is submitted to the server
Correct Answer: BC QUESTION 26
You are using the Basic tab of the Site Definition Wizard to create a new site.Which three stages of the wizard will you need to complete in order to create your new site?
A. Local Info, Remote Info, Testing Server
B. Editing Files, Remote Info, Sharing Files
C. Editing Files, Testing Files, Sharing Files
D. Editing Files, Testing Server, Remote Server
Correct Answer: C QUESTION 27
You are using the Advanced tab of the Site Definition Wizard to create a new site.Which category, or categories, do you need to properly complete in order to be able to begin creating and editing files?
A. the Local Info category only
B. the Local Info and Remote Info categories only
C. the Local Info, Remote Info, and Testing Server categories
D. the Local Info, Remote Info, and Version Control categories
Correct Answer: A
QUESTION 28
Which is the minimum information required in the Site Definition dialog to create a new site?
A. Local Info only
B. Local Info and Remote Info only
C. Local Info, Remote Info, and Testing Server only
D. Local Info, Remote Info, Testing Server, and Version Control
Correct Answer: A
QUESTION 29
You have added image files to the Web site you are building. Which panel allows you to preview these images?
A. Files
B. Assets
C. Snippets
D. Behaviors
Correct Answer: B
QUESTION 30
You have been working on a site within. Some of the files you have opened have the samename. Which command should you choose to view the directory of the file you are currently editing?
A. Edit > Find and Replace and search for the file you are editing
B. File > Open Recent to see the path for the file that you are editing
C. Site > Locate in Site to highlight the file you are editing in the Files panel
D. Edit > Find Selection to highlight the file you are editing in the Files panel
Correct Answer: C
QUESTION 31
Where are local files stored for a Dreamweaver site?
A. in a Local Sites directory created when Dreamweaver is installed
B. in a directory defined in the Directories tab under the Site Definition
C. in the Local Sites directory under the Dreamweaver installation directory
D. in a directory defined in the Local root folder setting under the Site Definition
Correct Answer: D
QUESTION 32
Your Web site has grown to over 200 pages. You want to move some of your pages into sub folders within your root folder. Which should you use to add folders and move files so links within your Web site are automatically updated during this process?
A. the Web server
B. the operating system
C. the Files panel within Dreamweaver
D. the Insert menu within Dreamweaver
Correct Answer: C
QUESTION 33
You have built a Web site using Dreamweaver and want to upload the Web site files to a Web server.You
can view the Web server root directory folder from your computer.
Which access setting should you use within the Remote Info section of the Site Definition dialog box to
upload your Web site files to the Web server?
A. FTP
B. RDS
C. WebDAV
D. Local/Network
Correct Answer: A
QUESTION 34
You are defining a Remote Site in Dreamweaver. From which file transfer method will you NOT be able to choose?
A. RDS
B. HTTP
C. WebDAV
D. FTP/SFTP
E. Local/Network
Correct Answer: B
QUESTION 35
You want to use the Synchronize Files feature to upload only newer files to the remote server. The Synchronize Sitewide command in Dreamweaver is grayed out, so you cannot access it. What must you do so you can use the Synchronize Sitewide feature?
A. define a remote server
B. define an images folder
C. close all pages within your website
D. delete unused files within your website
Correct Answer: A
QUESTION 36
You create a new folder called PDF at the root-level of your local site. You copy a PDF document to this folder. In the Files panel, you select the PDF document and click the Put button. What does Dreamweaver do?
A. Nothing. The folder must be selected before you can click the Put button.
B. The PDF document will be uploaded to the root-level of the remote site.
C. A PDF folder will be created at the root-level of the remote site, and the PDF documentwill then be uploaded into it.
D. A PDF folder will be created in the Default images folder of the remote site, and the PDF document will then be uploaded into it.
Correct Answer: C
QUESTION 37
You want to enable the Check In/Out system in Dreamweaver. Which category in the Site Definition dialog box should you use?
A. Cloaking
B. Contribute
C. Remote Info
D. Testing Server
Correct Answer: C
QUESTION 38
Which two statements about the local root folder are true? (Choose two.)
A. The local root folder name cannot contain spaces.
B. The local root folder cannot be located on a network server.
C. The local root folder can also serve as the default images folder.
D. The local root folder name must contain the URL address of the site.
E. The local root folder can be from a site that was not created in Dreamweaver.
Correct Answer: CE
QUESTION 39
By default, what does Dreamweaver assume about a testing server?
A. The testing server is running on a Unix-based server.
B. The testing server is running on your local root folder.
C. The testing server is running ColdFusion from Adobe.
D. The testing server is running on the same system as your web server.
Correct Answer: D
QUESTION 40
Which page layout option allows you to draw boxes for page content and Dreamweaver to create CSS for you?
A. Tables
B. Spry Region
C. AP Elements
D. Insert DIV Tag
Correct Answer: C
QUESTION 41
You want to create your site design by using a design saved as a JPEG, GIF, or PNG file. You also want the file to be loaded into the background of the Design view Window. Which command should you choose?
A. View > Tracing Image > Load
B. View > Style Rendering > Design-time
C. Insert > Image Objects > Image Placeholder
D. Modify > Page Properties > Background image
Correct Answer: A
QUESTION 42
What is a tracing image?
A. an image that can be used to morph and style SPRY elements
B. an image that is used as a guide for positioning HTML elements
C. an image that can be cut up by Dreamweaver into AP Elements
D. an image that can be cut up by Dreamweaver into an HTML table
Correct Answer: B QUESTION 43
Which type of page layout allows you to select all page elements on a Web page by using the AP Elements panel?
A. Spry
B. IFrame
C. relative positioned CSS
D. absolute positioned CSS
Correct Answer: D QUESTION 44
You are editing an HTML file that references an externally linked JavaScript file. You want to load the JavaScript file into Code view while keeping the HTML page visible in Design view. What should you do?
A. select the Coder Plus Workspace
B. choose Layout > Code view > Split Vertically
C. in Design view, choose Commands > Externalize JavaScript
D. in Split view, click on the .js file in the Related Files bar
Correct Answer: D QUESTION 45
How can you format text as superscript in Design view?
A. select the text, right-click on your selection, and choose Align >Top
B. select the text, right-click on your selection, and choose Style > Code
C. select the text and click on the Quick Tag Editor in the Properties panel
D. select the text, click on the Format drop-down list in the Properties panel, and select Superscript
Correct Answer: C QUESTION 46
What happens when you select some text in Design view and change the font to Comic Sans MS by using the Properties panel?
A. Your selection is wrapped with <font face=”Comic Sans MS”>..</font> tags.
B. Your selection is wrapped with <div style=”font-family:Comic Sans MS”>..</div> tags.
C. Your selection is wrapped with <span style=”font-family:Comic Sans MS”>6</span> tags.
D. You are prompted to enter a style class name and your text is wrapped with <span class=”classname”> </span> tags.
Correct Answer: D QUESTION 47
Which function is NOT available when you click on an image in Design view?
A. Crop
B. Rotate
C. Sharpen
D. Resample Correct Answer: B QUESTION 48
You build a Web page by using HTML, CSS, Spry, and JavaScript. You then click the Live View button. Which item on your Web page will work only if you use the Preview in Browser feature?
A. Flash
B. JavaScript
C. Hyperlinks
D. Server Behaviors
Correct Answer: C
QUESTION 49
Which two statements about Live Code View are true? (Choose two.)
A. It can only be run if Live View is active.
B. It can only be run if Live View is active.
C. It enables you to view JavaScript running in external .js files.
D. It allows you to modify your HTML as it is running and see the result.
E. It displays the same result as if you chose View > Source in a browser.
Correct Answer: AE
QUESTION 50
Which is NOT an option for Code view?
A. Auto Indent
B. Word Wrap
C. Head Content
D. Line Numbers
Correct Answer: C
Adobe 9A0-090 Exam Certification Guide presents you with an organized test preparation routine through the use of proven series elements and techniques.“Do I Know This Already?”quizzes open each chapter and allow you to decide how much time you need to spend on each section.Adobe 9A0-090 lists and Foundation Summary tables make referencing easy and give you a quick refresher whenever you need it.Challenging Adobe 9A0-090 review questions help you assess your knowledge and reinforce key concepts.Adobe 9A0-090 exercises help you think about exam objectives in real-world situations, thus increasing recall during exam time.
Most accurate The Adobe 9A0-082 Questions & Answers covers all the knowledge points of the real exam. We update our product frequently so our customer can always have the latest version of Adobe 9A0-082.We provide our customers with the excellent 7×24 hours customer service.We have the most professional Adobe 9A0-082 expert team to back up our grate quality products.If you still cannot make your decision on purchasing our product, please try our Adobe 9A0-082 free pdf practice test for you to free download.Adobe 9A0-082 is also an authenticated IT certifications site that offer all the new questions and answers timely.Visit the site Flydumps.com to get free Adobe 9A0-082 VCE test engine and PDF.
QUESTION 7
Which of the following containers is used to arrange its children in a single vertical stack, or column?
A. ViewStack
B. VBox
C. TabNavigator
D. Accordion
Correct Answer: B QUESTION 8
Which of the following components of the MVC data model is used for handling data interconnectivity in an application?
A. Controller
B. View
C. Architecture
D. Model
Correct Answer: A QUESTION 9
You want to play a transition effect whenever you press the enter key. Which of the following triggers will you use?
A. focuslnEffect
B. hideEffect
C. creationComplete Effect
D. moveEffect
Correct Answer: A QUESTION 10
Which of the following components of the MVC data model is used for handling data interconnectivity in an application?
A. Controller
B. View
C. Architecture
D. Model
Correct Answer: A QUESTION 11
Which of the following components of the MVC data model is used for handling data interconnectivity in an application?
A. Controller
B. View
C. Architecture
D. Model
Correct Answer: A
The Adobe contains more than 100 practice questions for the Adobe 9A0-082 exams,including simulation-based questions.Also contains hands-on exercises and a customized copy of the Adobe 9A0-082 exams network simulation software.