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.setAttribute(name, value);
B.request.getSession().setAttribute(name, value).;
C. response.setAttribute(name, value);
D. request.setParameter(name, value)