Java EE Web Application

 40 Minutes
 20 Questions


This test is designed to assess a candidate's knowledge of Java EE Web Application technologies. It covers topics such as Java Servlets, JavaServer Pages, Expression Language (JSP), Standard Tag Library (JSTL), Custom Tags in JSP Pages, Web Application Deployment, and Web Application Security. The test will evaluate the candidate's understanding of these topics and their ability to apply them in a practical setting.


Example Question:

Multiple-Choice
Considering the following JSP files, what will happen when we invoke test.jsp?
//test.jsp file
<%
request.setAttribute("MyName","Luk");
response.sendRedirect("myName.jsp");
%>
//myName.jsp file
<%
out.print(request.getAttribute("MyName"));
%>