Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
The quiz questions and an exercise are provided for your further understanding. See Appendix A, "Answers," for the answers.
| 1: | What is the difference between XML and XSL? |
| 2: | Is the following a valid XML document?
<stockperformance> <stock name="INTC"/> <stock name="MSFT"></stock> </stockperformance> |
| 3: | Which statement retrieves the root node from the DOM instance myDom? |
| 4: | Why would you apply an XSL style sheet on the server? |
| 5: | Why would the following code produce an error?
snowheights = XMLDoc.createElement("snowheights")
resort.appendChild(snowHeights)
|