(Choose 1 answer)
Which of the following statement correctly store an object associated with a name at a place where all the servlets/jsps of the same webapp participating in a session can access it?
Assume that request, response, name, value etc. are references to objects of appropriate types. (Choose one)
A. request.getSession().setAttribute(name, value);
B. response.setAttribute(name, value);
C. request.setAttribute(name, value);
D. request.setParameter(name, value)