Multiple choice technology web technology What are the ways to call a JSP(TestDisplay.jsp) from a Servlet ? getServletContext().getRequestDispatcher("/DateDisplay.jsp").forward(HttpServletRequest,HttpServletResponse); sendPage("TestDisplay", HttpServletRequest,HttpServletResponse) callPage("TestDisplay", HttpServletRequest,HttpServletResponse) HttpServletResponse.sendRedirect("/TestDisplay.jsp") Reveal answer Fill a bubble to check yourself A,C,D Correct answer