Which two create and set a new requestscoped attribute priority to the value "medium"?

Assume the scoped attribute priority does NOT yet exist.Which two create and set a new requestscoped attribute priority to the value “medium”? (Choose two.)

Assume the scoped attribute priority does NOT yet exist.Which two create and set a new requestscoped attribute priority to the value “medium”? (Choose two.)

A.
${priority = ‘medium’}

B.
${requestScope[‘priority’] = ‘medium’}

C.
<c:set var=”priority” value=”medium” />

D.
<c:set var=”priority” scope=”request”>medium</c:set>

E.
<c:set var=”priority” value=”medium” scope=”request” />

F.
<c:set property=”priority” scope=”request”>medium</c:set>

G.
<c:set property=”priority” value=”medium” scope=”request” />

Explanation:



Leave a Reply 0

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