Click the Exhibit button.
Assuming the tag library in the exhibit is imported with the prefix stock, which custom tag
invocation outputs the contents of the variable exposed by the quote tag?
A.
<stock:quote symbol=”SUNW” />
${var}
B.
${var}
<stock:quote symbol=”SUNW” />
C.
<stock:quote symbol=”SUNW”>
${var}
</stock:quote>
D.
<stock:quote symbol=”SUNW” var=”quote” />
${quote}
E.
<stock:quote symbol=”SUNW” var=”quote”>
<%= quote %>
</stock:quote>
Explanation: