Which two output the name of the product in the response?

Refer to the Exhibit.

A servlet sets a session-scoped attribute product with an instance of com.example.product an forward to a JSP. Which two output the name of the product in the
response? (Choose two)

Refer to the Exhibit.

A servlet sets a session-scoped attribute product with an instance of com.example.product an forward to a JSP. Which two output the name of the product in the
response? (Choose two)

A.
<%= product.getName() %>

B.
<jsp:useBean id=”product” class=”com.example.Product” /> <%= product.getName() %>

C.
<jsp:useBean id=”com.example.Product” scope=”page”> <%= product.getName() %>
</jsp:useBean>

D.
<jsp:useBean id=”product” type=”com.example.Product” scope=”page” />
<%= product.getName() %>

E.
<jsp:useBean id=”product” type=”com.example.Product”> <%= product.getName() %>
</jsp:useBean>



Leave a Reply 2

Your email address will not be published. Required fields are marked *


bestfriend

bestfriend

A,B.

D is wrong, A servlet sets a session-scoped attribute, D search in page scope.

eyad

eyad

best friend are you stupid , A is wrong
it is B and E