多项选择题
Given that a scoped attribute cart exist only in a user’s session, which two, taken independently, ensure the scoped attribute cart no longer exists?()
A. ${cart = null }
B. <c:remove var=”cart” />
C. <c:remove var=”${cart}” />
D. <c:remove var=”cart” scope=”session” />
E. <c:remove scope=”session”>cart</c:remove>
F. <c:remove var=”${cart}” scope=”session” />
G. <c:remove scope=”session”>${cart}</c:remove>
相关考题
-
多项选择题
AssumethescopedattributeprioritydoesNOTyetexist.Whichtwocreateandsetnewrequest-scopedattributeprioritytothevalue“medium”?()
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” /> -
多项选择题
Whichthe twoJSTLURL-relatedtagsperformURLrewriting?()
A. url
B. link
C. param
D. import
E. redirect -
单项选择题
Assume that a news tag library contains the tags lookup and item: Lookup Retrieves the latest news headlines and executes the tag body once for each headline. Exposed a NESTED page-scoped attribute called headline of type com.example. Headline containing details for that headline. Item Outputs the HTML for a single news headline. Accepts an attribute info of type com.example. Headline containing details for the headline to be rendered. Which snippet of JSP code returns the latest news deadlines in an HTLM table, one per row?()
A.A
B.B
C.C
D.D
