Multiple choice technology web technology

The statement states

  1. For each customer element of the result document

  2. For each customers element of the result document

  3. For each customer element of the source document thats a child of customers

  4. For each customers element of the source document

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The xsl:for-each element with select="customers/customer" iterates over each customer element in the SOURCE XML document that is a child of the customers element. It selects nodes from the input document, not the result tree being constructed.