Multiple choice technology programming languages

What is the result of loading the web-app with the following deployment descriptor and attempting to execute the following servlet? (Choose two.) author Elmore Leonard public class ContextInitParms extends HttpServlet { protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); PrintWriter out = response.getWriter(); Out.write(""); ServletContext sc = getServletContext(); out.write(sc.getInitParameter("auther")); out.close(); } }

  1. ParameterNotFoundException is thrown.

  2. Some other exception is thrown.

  3. "Elmore Leonard" is output on the web page

  4. An application failure occurs

  5. null is output on the web page.

  6. A 404 error occurs in the browser.

Reveal answer Fill a bubble to check yourself
D,F Correct answer