Adobe
9A0-127 · Question #54
Given the following XML data: <cfxml variable="xmlData"> <cars> <car> <name>Ford</name> <year>1990</year> <color>Red</color> </car> <car> <name>Toyota</name> <year>1995</year> <color>Blue</color>…
The correct answer is D. array. See the full explanation below for the reasoning.
Question
Given the following XML data:
<cfxml variable="xmlData"> <cars> <car> <name>Ford</name> <year>1990</year> <color>Red</color> </car> <car> <name>Toyota</name> <year>1995</year> <color>Blue</color> </car> <car> <name>KIA</name> <year>2000</year> <color>Green</color> </car> </cars> </cfxml> Which data type is returned from the following code? <cfdump var="#XmlSearch( xmlData, '//car[ 2 ]' )[1].xmlChildren#" />
Options
- AXML
- Bstring
- Cstruct
- Darray
How the community answered
(23 responses)- A9% (2)
- B17% (4)
- C4% (1)
- D70% (16)
Community Discussion
No community discussion yet for this question.