Multiple choice technology architecture

Which among below is the correct syntax for processing a jsp by XSLT?

  1. <c:set var="xsluri" scope="page"><c:out value="sepaddoverview"/></c:set> <aab-util:aabProcessXML xslUri="${xsluri}" xmlDoc="${xmlDoc}" />
  2. <c:set var="xsluri" scope="page"><c:out value="sepaddoverview"/></c:set> <aab-xml:aabProcessXML xslUri="${xsluri}" xmlDoc="${xmlDoc}" />
  3. <aab-xml:aabProcessXML xslUri="sepaddoverview" xmlDoc="${xmlDoc}" />
  4. Only b and c

  5. All of the above

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

Both options b and c represent valid syntax for processing a JSP or XML using the AAB XML utility library. Option b stores the XSL URI in a page-scoped variable before invoking the tag, while option c passes the string literal directly. Both resolve to valid tag library usage.