Your management has required that all JSPs be created to generate XHTML-compliant content
and to facilitate that decision, you are required to create all JSPs using the JSP Document format.
In the reviewOrder.jspx page, you need to use several core JSTL tags to process the collection of
order items in the customer’s shopping cart. Which JSP code snippets must you use in the
reviewOrder.jspx page?
A.
<html xmlns:jsp=”http://java.sun.com/JSP/Page”
version=”2.0″>
<jsp:directive.taglib prefix=”c”
uri=”http://java.sun.com/jsp/jstl/core” />
<!– page content –>
</html>
B.
<html xmlns:jsp=”http://java.sun.com/JSP/Page”
version=”2.0″
xmlns:c=”http://java.sun.com/jsp/jstl/core”>
<!– page content –>
</html>
C.
<jsp:root xmlns:jsp=”http://java.sun.com/JSP/Page”
version=”2.0″>
<jsp:directive.taglib prefix=”c”
uri=”http://java.sun.com/jsp/jstl/core” />
<!– page content –>
</jsp:root>
D.
<jsp:root xmlns:jsp=”http://java.sun.com/JSP/Page”
version=”2.0″
xmlns:c=”http://java.sun.com/jsp/jstl/core”>
<!– page content –>
</jsp:root>
Explanation: