About Question enthuware.jwpv6.2.689 :
Posted: Sat Jul 20, 2013 12:26 pm
Why is this answer wrong?
* String cartid = (String) pageContext.findAttribute("cartid");
It will search for the attribute in page, request, session, and context scopes in that order. If the attribute is in the session scope, it will be returned.
The answer says that it will be returned, if it is in session scope!
* String cartid = (String) pageContext.findAttribute("cartid");
It will search for the attribute in page, request, session, and context scopes in that order. If the attribute is in the session scope, it will be returned.
The answer says that it will be returned, if it is in session scope!