Why we use RequestDispatcher to forward a request to another resource(servlet, html, jsp), instead of using a sendRedirect()?
- sendRedirect() is not supported in servlet API
- RequestDispatcher is not supported in servlet API
- RequestDispatcher is efficient and allows the server to maintain request status
- None of these