OD
(Choose 1 answer)
Your servlet may receive a request, which the servlet cannot handle. In such cases, you war request to another resource which may or may not be a part of the same web application. WI following options can be used to achieve this objective?
A. response.sendRedirect("some url");
B. RequestDispatcherrd = this.getServletContext().getRequestDispatcher("some url");rd.forward(request, response);
C. RequestDispatcherrd = request.getRequestDispatcher("some url");rd.forward(request, response);
D. request.sendRedirect("some url");
31