Adobe
9A0-182 · Question #14
Given the following code: <fx:Binding source="message" destination="input.text" twoWay="true" /> <fx:Script> <![CDATA[ [Bindable] private var message:String = "Hello User"; ]]> </fx:Script>…
The correct answer is C. Goodbye User. See the full explanation below for the reasoning.
Question
Given the following code:
<fx:Binding source="message" destination="input.text" twoWay="true" /> fx:Script <![CDATA[ [Bindable] private var message:String = "Hello User"; ]]> </fx:Script> <s:TextInput id="input" text="Goodbye User" /> What will be displayed in the text input control when the application first loads?
Options
- AHello User
- Bthe empty string (nothing is displayed)
- CGoodbye User
- Dmessage
How the community answered
(42 responses)- A7% (3)
- B2% (1)
- C79% (33)
- D12% (5)
Community Discussion
No community discussion yet for this question.