(Choose 1 answer)
Which statements are BEST describe request implicit object of jsp file?
A. This javax.servlet.jsp.JspWriter object writes text as part of the response to a request. This object is used implicitly with JSP expressions and actions that insert string content in a response.
B. This java.lang.Object object represents the this reference for the current JSP instance.
C. This javax.servlet.jsp.PageContext object hides the implementation details of the underlying servlet and
JSP container and provides JSP programmers with access to the implicit objects discussed in this table.
D. This object represents the response to the client. The object normally is an instance of a class that implements HttpServletResponse (package javax.servlet.http). If a protocol other than HTTP is used, this object is an instance of a class that implements javax.servlet.ServletResponse.
E. This object represents the client request. The object normally is an instance of a class that implements HttpServletRequest (package javax.servlet.http). If a protocol other than HTTP is used, this object is an instance of a subclass of javax.servlet.ServletRequest.