(Choose 1 answer)
See the snippet below and choose correct statement:
<xsl:template match="BOOK[position()!=2]">
<xsl:value-of select="."/>
</xsl:template>
A. Select all BOOK element that are not the second child of their parents.
B. Select all element except BOOK elements
C. Select all BOOK element that are the second child of their parents