多选题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=”sessi

题目
多选题
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>


相似考题
参考答案和解析
正确答案: D,E
解析: 暂无解析