Zend
ZF-100-500 · Question #29
ZF-100-500 Question #29: Real Exam Question with Answer & Explanation
Sign in or unlock ZF-100-500 to reveal the answer and full explanation for question #29. The question stem and answer options stay visible for context.
Question
You have given the following XML data in the tasks.XML file: Zend ZF-100-500 Exam <?xml version="1.0" encoding="ISO-8859-1"?> <tasklist> <note> <tasks>Validate data</tasks> <details>String Validation</details> </note> <note> <tasks>Secure data</tasks> <details>Encryption</details> </note> </tasklist> Now, you run the following PHP script: <?php $objDOM = new DOMDocument(); $objDOM->load("tasks.xml"); $note = $objDOM->getElementsByTagName("note"); foreach( $note as $value ) { $tasks = $value->getElementsByTagName("tasks"); $task = $tasks->item(0)->nodeValue; $details = $value->getElementsByTagName("details"); $detail = $details->item(0)->nodeValue; echo "$task :: $detail <br>"; } ?> What should be displayed when this script is executed?
Options
- AThe contents of the whole XML document
- BThe XML of every tasks and details nodes
- CThe contents of every tasks and details nodes
- DThe XML of whole XML document
Unlock ZF-100-500 to see the answer
You've previewed enough free ZF-100-500 questions. Unlock ZF-100-500 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.