Click the Exhibit button.<br /> <img src="https://nimg.ppkao.com/2018-07/wenxueying/2018073109574484526.png?sign=37814625e9f38bf4613e4aa55a40fcf6&t=62d087aa" /><br /> Given the JSP code:<br /> 1.<%<br /> 2.pageContext.setAttribute( "product",<br /> 3.new com.example.Product( "Pizza", 0.99 ) );<br /> 4.%><br /> 5.<%-- insert code here --%><br /> Which two, inserted at line 5, output the name of the product in the response?()
A、
B、<jsp:useBean id="product" class="com.example.Product" /> <%= product.getName()%>
C、<jsp:useBean id="com.example.Product" scope="page"> <%= product.getName()%></jspuseBean>
D、<jsp:useBean id="product" type="com.example.Product" scope="page" /><%= product.getName()%>