The following XSL builds a query: Line 5 is supposed to store the result of the DQL query as a
string and pass that as a parameter to the XDQL template function.
Which code belongs in line 5?

A.
<xsl:with-param name = “dql” select=”(myQuery)”/>
B.
<xsl:with-param name = “dql” select=”($myQuery)”/>
C.
<xsl:with-param name = “dql” select=”string(myQuery)”/>
D.
<xsl:with-param name = “dql” select=”string($myQuery)”/>